pike.git/
src/
pike_error.h
Branch:
Tag:
Non-build tags
All tags
No tags
2004-06-29
2004-06-29 11:09:15 by Martin Nilsson <mani@lysator.liu.se>
a9d1027855676f62b9d6cb6062ca989be23d208b (
4
lines) (+
3
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Pike_vsnprintf
Rev: src/error.c:1.126
Rev: src/pike_error.h:1.33
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: pike_error.h,v 1.
32
2003
/
07
/
30
17
:
16
:
31
mast
Exp $
+
|| $Id: pike_error.h,v 1.
33
2004
/
06
/
29
11
:
09
:
15
nilsson
Exp $
*/ #ifndef PIKE_ERROR_H
221:
PMOD_EXPORT DECLSPEC(noreturn) void pike_throw(void) ATTRIBUTE((noreturn)); PMOD_EXPORT void push_error(const char *description); PMOD_EXPORT DECLSPEC(noreturn) void low_error(const char *buf) ATTRIBUTE((noreturn));
+
PMOD_EXPORT void Pike_vsnprintf(char *str, size_t size, const char *fmt, va_list ap);
void DECLSPEC(noreturn) va_error(const char *fmt, va_list args) ATTRIBUTE((noreturn)); PMOD_EXPORT DECLSPEC(noreturn) void new_error(const char *name, const char *text, struct svalue *oldsp, INT32 args, const char *file, int line) ATTRIBUTE((noreturn));