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