1 /* remove( const char * )
3 This file is part of the Public Domain C Library (PDCLib).
4 Permission is granted to use, modify, and / or redistribute at will.
7 /* This is an example implementation of remove() fit for use with POSIX kernels.
17 extern struct _PDCLIB_file_t * _PDCLIB_filelist;
19 int remove( const char * pathname )
28 #include "_PDCLIB_test.h"
32 /* Testing covered by ftell.c (and several others) */