diff options
author | nobody <nobody@localhost> | 1999-09-08 10:49:12 +0000 |
---|---|---|
committer | nobody <nobody@localhost> | 1999-09-08 10:49:12 +0000 |
commit | f6b28d76f9d2c3b0c7e996dedf13480058fe8f3f (patch) | |
tree | b4bb50d5c0d906ee92699db6bdac599816b98d37 /support/easy-vsnprintf.c | |
parent | a7b787822872645e6f8d28f4f897c2428ba74c46 (diff) | |
download | shared-mime-info-f6b28d76f9d2c3b0c7e996dedf13480058fe8f3f.tar.gz |
This commit was manufactured by cvs2svn to create tag 'BONOBO_0_4'.BONOBO_0_4
svn path=/tags/BONOBO_0_4/; revision=899
Diffstat (limited to 'support/easy-vsnprintf.c')
-rw-r--r-- | support/easy-vsnprintf.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/support/easy-vsnprintf.c b/support/easy-vsnprintf.c deleted file mode 100644 index b50df741..00000000 --- a/support/easy-vsnprintf.c +++ /dev/null @@ -1,30 +0,0 @@ -/* (v)snprintf in terms of __(v)snprintf - * - * Useful with Solaris 2.5 libc, which appears to have the `__*' versions - * of (v)snprintf. - * - * This file is in the public domain - * (in case it matters) - */ - -#include <stdarg.h> -#include <stdlib.h> - -extern int __vsnprintf (char *, size_t, const char *, va_list); - -int -vsnprintf (char *string, size_t maxlen, const char *format, va_list args) -{ - return __vsnprintf (string, maxlen, format, args); -} - -int -snprintf (char *string, size_t maxlen, const char *format, ...) -{ - va_list args; - int retval; - va_start(args, format); - retval = vsnprintf (string, maxlen, format, args); - va_end(args); - return retval; -} |