]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/_PDCLIB/close.c
Whitespace cleanups.
[pdclib] / platform / example / functions / _PDCLIB / close.c
index c4b61738794444b55c1a5e387c6c7bf5315c68b0..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.
@@ -13,7 +11,8 @@
 #include <stdio.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_glue.h>
+
+#include "_PDCLIB_glue.h"
 
 extern int close( int fd );
 
@@ -25,7 +24,8 @@ int _PDCLIB_close( int fd )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {