kernel/tools/testing/selftests/proc/proc-self-syscall.c
.. .. @@ -19,7 +19,6 @@ 19 19 #include <sys/stat.h> 20 20 #include <fcntl.h> 21 21 #include <errno.h> 22 -#include <unistd.h>23 22 #include <string.h> 24 23 #include <stdio.h> 25 24 .. .. @@ -38,7 +37,7 @@ 38 37 fd = open("/proc/self/syscall", O_RDONLY); 39 38 if (fd == -1) { 40 39 if (errno == ENOENT) 41 - return 2;40 + return 4;42 41 return 1; 43 42 } 44 43