3 /* _PDCLIB_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 _PDCLIB_remove() (declared in
10 _PDCLIB_glue.h), fit for use in POSIX kernels.
11 NOTE: Linux is *not* POSIX-compliant in this, as it sets EISDIR instead of
12 EPERM if you try to unlink a directory. Check the manpage for unlink(2).
16 #include <_PDCLIB_glue.h>
20 int _PDCLIB_remove( const char * filename )
22 int prev_errno = errno;
25 if ( ( ( rc = unlink( filename ) ) != 0 ) && ( errno == EPERM ) )
27 rc = rmdir( filename );
36 /* TODO: Work around the following undef */
38 #include <_PDCLIB_test.h>
42 TESTCASE( NO_TESTDRIVER );