]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/_PDCLIB/_Exit.c
Comment cleanups.
[pdclib] / platform / example / functions / _PDCLIB / _Exit.c
index c3ecfbc373b26718be4d43024f17aedb801d9c3e..4cfc6660b4c659d46ec5598005998592183c2176 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* _PDCLIB_exit( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -14,7 +12,8 @@
 
 #ifndef REGTEST
 #include <_PDCLIB_glue.h>
-#include <unistd.h>
+
+extern void _exit( int status ) _PDCLIB_NORETURN;
 
 void _PDCLIB_Exit( int status )
 {
@@ -24,8 +23,6 @@ void _PDCLIB_Exit( int status )
 #endif
 
 #ifdef TEST
-/* TODO: Work around the following undef */
-#undef SEEK_SET
 #include <_PDCLIB_test.h>
 
 int main( void )