2018-08-15 04:07:33 +03:00
|
|
|
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
|
|
|
* This file is part of ToaruOS and is released under the terms
|
2018-05-04 07:01:55 +03:00
|
|
|
* of the NCSA / University of Illinois License - see LICENSE.md
|
|
|
|
* Copyright (C) 2013 K. Lange
|
|
|
|
*
|
|
|
|
* sysfunc
|
|
|
|
*
|
|
|
|
* Executes an "extended system function" which
|
|
|
|
* is basically just a super-syscall.
|
|
|
|
*/
|
|
|
|
#include <stdlib.h>
|
2018-12-10 12:44:34 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <sys/sysfunc.h>
|
2018-05-04 07:01:55 +03:00
|
|
|
|
|
|
|
int main(int argc, char ** argv) {
|
|
|
|
if (argc < 2) return 1;
|
2018-12-10 12:44:34 +03:00
|
|
|
int ret = sysfunc(atoi(argv[1]), &argv[2]);
|
|
|
|
if (ret < 0) {
|
|
|
|
fprintf(stderr, "%s: %s\n", argv[0], strerror(errno));
|
|
|
|
}
|
|
|
|
return ret;
|
2018-05-04 07:01:55 +03:00
|
|
|
}
|