summaryrefslogtreecommitdiff
path: root/support/easy-vsnprintf.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2000-02-16 23:51:01 +0000
committernobody <nobody@localhost>2000-02-16 23:51:01 +0000
commit24d4cdb4285b6b1d556e3dc0df9b525616c58858 (patch)
tree98fe50443354e7a50e15cdbf538d532cbe200693 /support/easy-vsnprintf.c
parent2a100a815eedc4d6db58f12d5eff242c022358d7 (diff)
downloadshared-mime-info-GIDE_0_1_BRANCH.tar.gz
This commit was manufactured by cvs2svn to create branchGIDE_0_1_BRANCH
'GIDE_0_1_BRANCH'. svn path=/branches/GIDE_0_1_BRANCH/; revision=1113
Diffstat (limited to 'support/easy-vsnprintf.c')
-rw-r--r--support/easy-vsnprintf.c30
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;
-}