]> pd.if.org Git - pdclib/blobdiff - functions/stdio/ftell.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / ftell.c
index ba79db3b8218268efaf100027dfbedbd6759b8bc..9731e33368ae23364110f22dba1421ddd1d5cc0c 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* ftell( FILE * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -12,7 +10,7 @@
 #include <errno.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_io.h>
+#include "_PDCLIB_io.h"
 
 long int _PDCLIB_ftell_unlocked( FILE * stream )
 {
@@ -38,10 +36,10 @@ long int ftell( FILE * stream )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 #include <stdlib.h>
 #ifndef REGTEST
-#include <_PDCLIB_io.h>
+#include "_PDCLIB_io.h"
 #endif
 
 int main( void )