diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-01-21 13:01:39 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-01-21 13:01:39 +0000 |
commit | ef7476572c9a18c0cb4d5dbaf3a81f1628419abb (patch) | |
tree | 0358496ea53f35b6dc31f8a296a2021c99db1b89 /test-vasprintf.c | |
parent | 05798824d24a3b26ef3439303ad694202c75729e (diff) |
Notes
Diffstat (limited to 'test-vasprintf.c')
-rw-r--r-- | test-vasprintf.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test-vasprintf.c b/test-vasprintf.c index bdb4408e300b..ee6980a28955 100644 --- a/test-vasprintf.c +++ b/test-vasprintf.c @@ -1,4 +1,4 @@ -/* $Id: test-vasprintf.c,v 1.3 2015/10/06 18:32:20 schwarze Exp $ */ +/* $Id: test-vasprintf.c,v 1.4 2016/07/18 18:35:05 schwarze Exp $ */ /* * Copyright (c) 2015 Ingo Schwarze <schwarze@openbsd.org> * @@ -23,7 +23,10 @@ #include <stdio.h> #include <string.h> -int +static int testfunc(char **, const char *, ...); + + +static int testfunc(char **ret, const char *format, ...) { va_list ap; |