/* This file is part of ToaruOS and is released under the terms * of the NCSA / University of Illinois License - see LICENSE.md * Copyright (C) 2013 K. Lange */ /* vim:tabstop=4 shiftwidth=4 noexpandtab * * sysfunc * * Executes an "extended system function" which * is basically just a super-syscall. */ #include #include int main(int argc, char ** argv) { if (argc < 2) return 1; return syscall_system_function(atoi(argv[1]), &argv[2]); }