repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
isblank() implementation.
[minix.git]
/
lib
/
libc
/
posix
/
_rmdir.c
blob
720110e70222b64e2881023c23610df6c9d7498c
1
#include <lib.h>
2
#define rmdir _rmdir
3
#include <unistd.h>
4
5
PUBLIC
int
rmdir
(
name
)
6
_CONST
char
*
name
;
7
{
8
message m
;
9
10
_loadname
(
name
, &
m
);
11
return
(
_syscall
(
FS
,
RMDIR
, &
m
));
12
}