repo.or.cz
/
monosproject.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
schedule the highest priority thread,overP1
[monosproject.git]
/
src
/
examples
/
rm.c
blob
0db7f7b2aedfa8e98a221d3c685f67ca393a18fc
1
/* rm.c
2
3
Removes files specified on command line. */
4
5
#include <stdio.h>
6
#include <syscall.h>
7
8
int
9
main
(
int
argc
,
char
*
argv
[])
10
{
11
bool
success
=
true
;
12
int
i
;
13
14
for
(
i
=
1
;
i
<
argc
;
i
++)
15
if
(!
remove
(
argv
[
i
]))
16
{
17
printf
(
"%s: remove failed
\n
"
,
argv
[
i
]);
18
success
=
false
;
19
}
20
return
success
?
EXIT_SUCCESS
:
EXIT_FAILURE
;
21
}