/* * Copyright 2016, Data61 * Commonwealth Scientific and Industrial Research Organisation (CSIRO) * ABN 41 687 119 230. * * This software may be distributed and modified according to the terms of * the BSD 2-Clause license. Note that NO WARRANTY is provided. * See "LICENSE_BSD2.txt" for details. * * @TAG(D61_BSD) */ #include #include #include #include #include long sys_getpid(va_list ap) { /* Ignored stub. */ return 0; } long sys_umask(va_list ap) { /* Ignored stub. */ return (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH); } long sys_rt_sigaction(va_list ap) { /* Ignored stub. */ return 0; } long sys_fcntl64(va_list ap) { /* Ignored stub. */ return 0; }