summaryrefslogtreecommitdiff
path: root/test/misc/stdarg.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/misc/stdarg.c')
-rw-r--r--test/misc/stdarg.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/misc/stdarg.c b/test/misc/stdarg.c
deleted file mode 100644
index 1566e0ce8..000000000
--- a/test/misc/stdarg.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/* copied from rsync */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <sys/types.h>
-#include <stdarg.h>
-static int foo(const char *format, ...)
-{
- va_list ap;
- size_t len;
- char buf[5];
-
- va_start(ap, format);
- len = vsnprintf(0, 0, format, ap);
- va_end(ap);
- if (len != 5) return(1);
-
- if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) return(1);
-
- return(0);
-}
-int main(void) { return foo("hello"); }