aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-12-27 03:51:38 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-12-27 03:51:38 +0000
commitde551b46ca42fea5cae9608d0087ef6685d51ca1 (patch)
tree9b40f0dc535dde12db596a9a5fd442cc022b3091
parenta013ac55315dc701a0d9ba43e337c673f398638a (diff)
following up on bug report #2921689, fixed a bunch of 'implicit declaration of function' warnings, which could cause problems on 64-bit
svn path=/trunk/externals/OSCx/; revision=12846
-rw-r--r--src/OSC-system-dependent.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/OSC-system-dependent.c b/src/OSC-system-dependent.c
index 8ecaa07..d4f9c50 100644
--- a/src/OSC-system-dependent.c
+++ b/src/OSC-system-dependent.c
@@ -51,9 +51,7 @@ The OpenSound Control WWW page is
#include <stdarg.h>
#include <stdio.h>
-#ifdef WIN32
- #include <stdlib.h>
-#endif
+#include <stdlib.h>
void fatal_error(char *s, ...) {
va_list ap;