diff options
Diffstat (limited to 'src/stdio/asprintf.c')
-rw-r--r-- | src/stdio/asprintf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/asprintf.c b/src/stdio/asprintf.c index 4ec83534..7def0b49 100644 --- a/src/stdio/asprintf.c +++ b/src/stdio/asprintf.c @@ -11,3 +11,11 @@ int asprintf(char **s, const char *fmt, ...) va_end(ap); return ret; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |