]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/stdlib/system.c
Kludge to avoid unistd.h redefinition warnings.
[pdclib] / platform / example / functions / stdlib / system.c
index 306226d9153bef91952944e18aabd3902544c2d3..fb3c40685da55e10c0d832efe6d1228f3f6c99ad 100644 (file)
@@ -1,7 +1,5 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* system( const char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -35,6 +33,8 @@ int system( const char * string )
 }
 
 #ifdef TEST
+/* TODO: Work around the following undef */
+#undef SEEK_SET
 #include <_PDCLIB_test.h>
 
 #define SHELLCOMMAND "echo 'SUCCESS testing system()'"