]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fseek.c
dos2unix
[pdclib] / functions / stdio / fseek.c
index 44cc6fbf86a8ca2f8a80bbace841f84ebd3453ad..a24a608b7ca8b54f4c1b45b3926a0f6d9da6c20a 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.
@@ -9,7 +7,7 @@
 #include <stdio.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_io.h>
+#include "_PDCLIB_io.h"
 
 int _PDCLIB_fseek_unlocked( FILE * stream, long loffset, int whence )
 {
@@ -47,7 +45,7 @@ int fseek( FILE * stream, long loffset, int whence )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 #include <string.h>
 
 int main( void )