mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
learned something new - remove is supposed to support directories on POSIX
This commit is contained in:
parent
4106cdcd2d
commit
0b240ccf52
1 changed files with 3 additions and 1 deletions
|
@ -1,7 +1,9 @@
|
|||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
#include "syscall.h"
|
||||
|
||||
int remove(const char *path)
|
||||
{
|
||||
return syscall(SYS_unlink, path);
|
||||
return (syscall(SYS_unlink, path) && errno == EISDIR)
|
||||
? syscall(SYS_rmdir, path) : 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue