summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorbaumann <abaumann@yahoo.com>2010-07-16 16:49:59 +0200
committerbaumann <abaumann@yahoo.com>2010-07-16 16:49:59 +0200
commitc7e9f16e0b4e16deab9d08c122e9f0eab735cb9f (patch)
tree60ca5d008c55756d6283ca337c9479c4029491e1 /tests
parentddbe32fde3b20b2641f2709baebf337d4d4cf8d3 (diff)
downloadwolfbones-c7e9f16e0b4e16deab9d08c122e9f0eab735cb9f.tar.gz
wolfbones-c7e9f16e0b4e16deab9d08c122e9f0eab735cb9f.tar.bz2
fixed wrong order of inclusion for tcc (string.h and memcpy redefinition)
Diffstat (limited to 'tests')
-rw-r--r--tests/port/test_snprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/port/test_snprintf.c b/tests/port/test_snprintf.c
index ce4a0a4..3f7491f 100644
--- a/tests/port/test_snprintf.c
+++ b/tests/port/test_snprintf.c
@@ -18,9 +18,9 @@
#include "port/sys.h"
#define WOLF_TEST_SNPRINTF
+#include "port/string.h" /* for strcmp */
#include "port/stdio.c" /* for snprintf */
-#include "port/string.h" /* for strcmp */
#include <stdlib.h> /* for exit, EXIT_SUCCESS, free */
int main( void ) {