Browse Source

Zou WeiJun noticed a type breaking the stime syscall
-Erik

Eric Andersen 21 years ago
parent
commit
1d4e1d24f3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/sysdeps/linux/common/syscalls.c

+ 1 - 1
libc/sysdeps/linux/common/syscalls.c

@@ -284,7 +284,7 @@ _syscall0(uid_t, getuid);
 #ifdef L_stime
 #include <time.h>
 #include <sys/time.h>
-#ifdef _NR_stime
+#ifdef __NR_stime
 _syscall1(int, stime, const time_t *, t);
 #else
 int stime(const time_t *when)