summaryrefslogtreecommitdiff
path: root/libc/sysdeps
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-08-05 08:08:46 +0000
committerEric Andersen <andersen@codepoet.org>2003-08-05 08:08:46 +0000
commit1d4e1d24f30accf5a1e42ada84be1961fa4f19cb (patch)
tree4002d8cf4d5739f19fb0073b3bf7261e8e9b8b19 /libc/sysdeps
parentb55a9089dda9bc93a4a54af5951d2dc90d60362c (diff)
Zou WeiJun noticed a type breaking the stime syscall
-Erik
Diffstat (limited to 'libc/sysdeps')
-rw-r--r--libc/sysdeps/linux/common/syscalls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c
index 351a5ecfa..9c5fb9530 100644
--- a/libc/sysdeps/linux/common/syscalls.c
+++ b/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)