]> gerrit.simantics Code Review - simantics/fmil.git/blob - system.h
603ae24805d2f6c5bd81a0d8aabcb3c7dd2a11cf
[simantics/fmil.git] / system.h
1 /* $Id: system.h,v 1.1.1.1 2008/01/06 03:24:00 holger Exp $ */
2
3 #ifndef SYSTEM_H
4 #define SYSTEM_H
5
6 #if HAVE_CONFIG_H
7 #include <config.h>
8 #endif  /* HAVE_CONFIG_H */
9
10 #if HAVE_STDARG_H
11 #include <stdarg.h>
12 #if !HAVE_VSNPRINTF
13 int rpl_vsnprintf(char *, size_t, const char *, va_list);
14 #endif  /* !HAVE_VSNPRINTF */
15 #if !HAVE_SNPRINTF
16 int rpl_snprintf(char *, size_t, const char *, ...);
17 #endif  /* !HAVE_SNPRINTF */
18 #if !HAVE_VASPRINTF
19 int rpl_vasprintf(char **, const char *, va_list);
20 #endif  /* !HAVE_VASPRINTF */
21 #if !HAVE_ASPRINTF
22 int rpl_asprintf(char **, const char *, ...);
23 #endif  /* !HAVE_ASPRINTF */
24 #endif  /* HAVE_STDARG_H */
25 #endif  /* SYSTEM_H */