toaruos/userspace/core/sysfunc.c
2013-02-10 01:36:35 -08:00

15 lines
311 B
C

/* vim:tabstop=4 shiftwidth=4 noexpandtab
*
* sysfunc
*
* Executes an "extended system function" which
* is basically just a super-syscall.
*/
#include <syscall.h>
#include <stdlib.h>
int main(int argc, char ** argv) {
if (argc < 2) return 1;
return syscall_system_function(atoi(argv[1]), &argv[2]);
}