xv6/userfs.c

14 lines
124 B
C
Raw Normal View History

#include "user.h"
2006-07-10 16:27:15 +00:00
// file system tests
char buf[1024];
int
2006-07-10 16:27:15 +00:00
main()
{
2006-07-11 01:07:40 +00:00
puts("userfs running\n");
2006-07-10 16:27:15 +00:00
block();
return 0;
2006-07-10 16:27:15 +00:00
}