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.
9 /* This is an example implementation of remove() fit for use with POSIX kernels.
18 #include <wchar.h> // Watcom bug: winnt.h assumes string.h defines wchar_t
21 extern struct _PDCLIB_file_t * _PDCLIB_filelist;
23 extern void _PDCLIB_w32errno( void );
24 int remove( const char * pathname )
26 BOOL ok = DeleteFileA( pathname );
36 #include <_PDCLIB_test.h>
40 /* Testing covered by ftell.c (and several others) */