1 /* 2 * Licensed under the LGPL v2.1 or later, see the file COPYING.LIB 3 * in this tarball. 4 */ 5 6 #include <errno.h> 7 #include <features.h> 8 __syscall_error(int err_no)9 long __syscall_error(int err_no) 10 { 11 __set_errno(-err_no); 12 return -1; 13 } 14 15