aboutsummaryrefslogtreecommitdiffstats
path: root/envmalloczn.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2018-08-28 10:41:36 +0200
committerMattias Andrée <maandree@kth.se>2018-08-28 10:41:36 +0200
commit60513cb5508a8197f5219dc3d06c0331c99863a6 (patch)
tree210f152018f18646c1f0cbca21602875562366bb /envmalloczn.c
parentFix vputenvf (diff)
downloadlibsimple-60513cb5508a8197f5219dc3d06c0331c99863a6.tar.gz
libsimple-60513cb5508a8197f5219dc3d06c0331c99863a6.tar.bz2
libsimple-60513cb5508a8197f5219dc3d06c0331c99863a6.tar.xz
Add test function to all .c files
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'envmalloczn.c')
-rw-r--r--envmalloczn.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/envmalloczn.c b/envmalloczn.c
index 661e18a..832ce67 100644
--- a/envmalloczn.c
+++ b/envmalloczn.c
@@ -1,5 +1,6 @@
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
+#ifndef TEST
extern char *argv0;
@@ -15,3 +16,15 @@ libsimple_envmalloczn(int status, int clear, size_t n, va_list ap) /* TODO test
}
return ret;
}
+
+
+#else
+#include "test.h"
+
+int
+main(void)
+{
+ return 0;
+}
+
+#endif