]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/_PDCLIB/seek.c
Whitespace cleanups.
[pdclib] / platform / example / functions / _PDCLIB / seek.c
index 755abe2cb1eb9393a943356007f9071a69b9f2de..cafcee8ddc2cfd64db234c335ca00e9754667321 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* int64_t _PDCLIB_seek( FILE *, int64_t, int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -8,10 +6,9 @@
 
 #include <stdio.h>
 
-#ifndef _PDCLIB_GLUE_H
-#define _PDCLIB_GLUE_H
-#include <_PDCLIB_glue.h>
-#endif
+#ifndef REGTEST
+
+#include "_PDCLIB_glue.h"
 
 #include "/usr/include/errno.h"
 
@@ -60,8 +57,11 @@ _PDCLIB_int64_t _PDCLIB_seek( struct _PDCLIB_file_t * stream, _PDCLIB_int64_t of
     return EOF;
 }
 
+#endif
+
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -70,4 +70,3 @@ int main( void )
 }
 
 #endif
-