summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2011-01-11 10:36:44 +0000
committerManolo Gouy <Manolo>2011-01-11 10:36:44 +0000
commit03af588ef9b27b6214b3b16fea46bbb30f2ddd3e (patch)
tree2d68c13b4c8b2db85ec87fa447a703e2454a04fd
parent94a3cdaa47b923ca2daca2bde87367b436fd8c81 (diff)
Added missing #include's when compiled using Xcode
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8252 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--test/demo.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/demo.cxx b/test/demo.cxx
index b1f30eb17..bd3eb9b64 100644
--- a/test/demo.cxx
+++ b/test/demo.cxx
@@ -38,6 +38,10 @@
# endif // !__WATCOMC__
#elif defined USING_XCODE
#include <ApplicationServices/ApplicationServices.h>
+#include <unistd.h> // for chdir()
+#include <stdio.h>
+#include <stdlib.h> // for system()
+#include <string.h>
#else
# include <unistd.h>
#endif