]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/_PDCLIB/close.c
Whitespace cleanups.
[pdclib] / platform / example / functions / _PDCLIB / close.c
index fd85f4c636986b630ebafb5440fe88308a946b26..8fc9b3474b9b06200fc0496f091a1863aadc2e1d 100644 (file)
@@ -1,6 +1,4 @@
-/* $Id$ */
-
-/* _PDCLIB_close( _PDCLIB_fd_t fd )
+/* _PDCLIB_close( _PDCLIB_fd_t )
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.
 #include <stdio.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_glue.h>
 
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <unistd.h>
+#include "_PDCLIB_glue.h"
+
+extern int close( int fd );
 
-int _PDCLIB_close( _PDCLIB_fd_t fd )
+int _PDCLIB_close( int fd )
 {
     return close( fd );
 }
@@ -28,7 +24,8 @@ int _PDCLIB_close( _PDCLIB_fd_t fd )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {