2012-05-16 20:51:37 -04:00
|
|
|
/* vim:tabstop=4 shiftwidth=4 noexpandtab
|
2012-07-06 21:08:28 -07:00
|
|
|
*
|
|
|
|
* sysfunc
|
|
|
|
*
|
|
|
|
* Executes an "extended system function" which
|
|
|
|
* is basically just a super-syscall.
|
2012-05-16 20:51:37 -04:00
|
|
|
*/
|
|
|
|
#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]);
|
|
|
|
}
|