X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2F_PDCLIB%2Fclose.c;h=8fc9b3474b9b06200fc0496f091a1863aadc2e1d;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=f3475974adb3048ce3021ae2bb9f512344e72dd1;hpb=f95a96d949a941d03a18cdacf4442656c7db9233;p=pdclib diff --git a/platform/example/functions/_PDCLIB/close.c b/platform/example/functions/_PDCLIB/close.c index f347597..8fc9b34 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,12 +11,10 @@ #include #ifndef REGTEST -#include <_PDCLIB_glue.h> -#include -#include -#include -#include +#include "_PDCLIB_glue.h" + +extern int close( int fd ); int _PDCLIB_close( int fd ) { @@ -28,7 +24,8 @@ int _PDCLIB_close( int fd ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) {