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 #include <sys/types.h>
23 int _PDCLIB_close( int fd )
31 #include <_PDCLIB_test.h>
35 /* No testdriver; tested in driver for _PDCLIB_open(). */