]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fseek.c
Whitespace cleanups.
[pdclib] / functions / stdio / fseek.c
index ab6679bfb7ae590336b16abcb722ecd66971bfc6..c8427f8c9a32b418c0d1364bb7592ac437c58bfb 100644 (file)
@@ -1,6 +1,4 @@
-/* $Id$ */
-
-/* fseek( FILE *, long offset, int )
+/* fseek( FILE *, long, int )
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.
@@ -10,7 +8,7 @@
 
 #ifndef REGTEST
 
-#include <_PDCLIB_glue.h>
+#include "_PDCLIB_glue.h"
 
 int fseek( struct _PDCLIB_file_t * stream, long offset, int whence )
 {
@@ -32,7 +30,9 @@ int fseek( struct _PDCLIB_file_t * stream, long offset, int whence )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
+
 #include <string.h>
 
 int main( void )
@@ -83,4 +83,3 @@ int main( void )
 }
 
 #endif
-