3 /* _PDCLIB_close( _PDCLIB_fd_t fd )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
9 /* This is an example implementation of _PDCLIB_close() fit for use with POSIX
16 #include <_PDCLIB_glue.h>
18 extern int close( int fd );
20 int _PDCLIB_close( int fd )
28 #include <_PDCLIB_test.h>
32 /* No testdriver; tested in driver for _PDCLIB_open(). */