07955c83c6
* Finally bring syscall.h up to speed and include all syscalls in the syscall module of the C library. * Remove the third-party obfuscated C demos (we have nyancat, good enough) * Fix userspace apps to build without complaining about undeclared strtok_r by disable __STRICT_ANSI__ * Fix .eh_frame by including the proper stuff with libgcc.
15 lines
311 B
C
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]);
|
|
}
|