X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2F_PDCLIB%2Fclose.c;h=279fae8e2b1cb69b5c617b73560c5157dde2e002;hb=d6f1494a4f38a212b29a13ee713885058dcf0fe7;hp=c4b61738794444b55c1a5e387c6c7bf5315c68b0;hpb=393020b6e48719d27699dea6b29e53025bbd5123;p=pdclib diff --git a/platform/example/functions/_PDCLIB/close.c b/platform/example/functions/_PDCLIB/close.c index c4b6173..279fae8 100644 --- a/platform/example/functions/_PDCLIB/close.c +++ b/platform/example/functions/_PDCLIB/close.c @@ -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,7 @@ #include #ifndef REGTEST -#include <_PDCLIB_glue.h> +#include "_PDCLIB_glue.h" extern int close( int fd ); @@ -25,7 +23,7 @@ int _PDCLIB_close( int fd ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) {