blob: d3a4923658545c51546338cdc08f61affa5ca51e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "user.h"
// file system tests
char buf[1024];
char *args[] = { "echo", "hello", "goodbye", 0 };
int
main(void)
{
puts("userfs running\n");
block();
exec("echo", args);
return 0;
}
|