toaruos/userspace/uname.c
Kevin Lange fd77e36013 Add bin/uname, fix disk buidling
Disk will now rebuild when userspace/*.c are updated.
Make sure you build in userspace/ first!
2012-01-28 17:10:03 -06:00

16 lines
276 B
C

/* vim: tabstop=4 shiftwidth=4 noexpandtab
*
* uname
*/
#include <stdio.h>
#include <syscall.h>
DEFN_SYSCALL1(kernel_string_XXX, 25, char *);
int main(int argc, char * argv[]) {
char _uname[1024];
syscall_kernel_string_XXX(_uname);
fprintf(stdout, "%s\n", _uname);
}