projects
/
pintos-anon
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Remove O_EXCL from flags used to create files to be copied out of a
[pintos-anon]
/
src
/
examples
/
echo.c
1
#include <stdio.h>
2
#include <syscall.h>
3
4
int
5
main (int argc, char **argv)
6
{
7
int i;
8
9
for (i = 0; i < argc; i++)
10
printf ("%s ", argv[i]);
11
printf ("\n");
12
13
return EXIT_SUCCESS;
14
}