From 1d5e0008bd37cf7671dfa17b31dfd5828c5516bf Mon Sep 17 00:00:00 2001 From: jsorg71 Date: Sat, 27 Jan 2007 17:46:50 +0000 Subject: [PATCH] added g_snprintf to header --- common/os_calls.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/os_calls.h b/common/os_calls.h index 2f1018cb..e6b5f278 100644 --- a/common/os_calls.h +++ b/common/os_calls.h @@ -36,6 +36,8 @@ g_printf(const char *format, ...); void DEFAULT_CC g_sprintf(char* dest, const char* format, ...); void DEFAULT_CC +g_snprintf(char* dest, int len, const char* format, ...); +void DEFAULT_CC g_writeln(const char* format, ...); void DEFAULT_CC g_write(const char* format, ...);