/* Copyright (C) 2008 Andreas Baumann This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #ifndef __SNPRINTF_H #define __SNPRINTF_H #include "port/sys.h" #include "port/sys_internal.h" /* impose some defaults, if we need snprintf and friends on the platform * given, we define the proper values in include/port/sys.h */ #ifndef HAVE_CONFIG_H #define HAVE_CONFIG_H 0 #endif #define TEST_SNPRINTF 0 #ifndef HAVE_STDARG_H #define HAVE_STDARG_H 1 #endif #ifndef HAVE_SYS_TYPES_H #define HAVE_SYS_TYPES_H 1 #endif #ifndef HAVE_STDDEF_H #define HAVE_STDDEF_H 1 #endif #ifndef HAVE_SYS_TYPES_H #define HAVE_SYS_TYPES_H 1 #endif #ifndef HAVE_STDLIB_H #define HAVE_STDLIB_H 1 #endif #ifndef HAVE_VA_COPY #define HAVE_VA_COPY 1 #endif #if HAVE_STDARG_H #include /* for va_list */ #endif #if HAVE_SYS_TYPES_H #include /* for size_t */ #endif #endif /* ifndef __SNPRINTF_H */