3 /* remove( const char * )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
12 #include <_PDCLIB_glue.h>
14 int remove( const char * filename )
16 /* TODO: Check open file list, flush and close file if open */
17 return _PDCLIB_remove( filename );
23 #include <_PDCLIB_test.h>
28 TESTCASE( NO_TESTDRIVER );
30 puts( " NOTEST remove() test driver is PDCLib-specific." );