1 #ifndef _SYS_SMALLPRINT_H 2 #define _SYS_SMALLPRINT_H 3 4 #include <stdarg.h> 5 6 #ifdef __cplusplus 7 extern "C" { 8 #endif 9 10 int __small_sprintf (char *__dst, const char *__fmt, ...); 11 int __small_vsprintf (char *__dst, const char *__fmt, va_list __ap); 12 13 #ifdef __cplusplus 14 }; 15 #endif 16 17 #endif /* _SYS_SMALLPRINT_H */ |