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
Remove building with NOCRYPTO option
[minix.git]
/
minix
/
lib
/
libc
/
sys
/
rmdir.c
blob
329668a2ce13c6516594b13244289bc39f007550
1
#include <sys/cdefs.h>
2
#include <lib.h>
3
#include
"namespace.h"
4
5
#include <string.h>
6
#include <unistd.h>
7
8
int
rmdir
(
name
)
9
const char
*
name
;
10
{
11
message m
;
12
13
memset
(&
m
,
0
,
sizeof
(
m
));
14
_loadname
(
name
, &
m
);
15
return
(
_syscall
(
VFS_PROC_NR
,
VFS_RMDIR
, &
m
));
16
}