From 35107e0ce4a5ba642890a057ad5fc080d71ed9a4 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 27 Jul 2003 19:02:36 +0000 Subject: Update. * sysdeps/unix/sysv/syscalls.list: time syscall never fails. * sysdeps/unix/sysv/linux/x86_64/time.S: time syscall never fails. * sysdeps/unix/sysv/i386/time.S: time syscall never fails. --- sysdeps/unix/sysv/i386/time.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sysdeps/unix/sysv/i386') diff --git a/sysdeps/unix/sysv/i386/time.S b/sysdeps/unix/sysv/i386/time.S index 1d5395a131..83b8d1fd6f 100644 --- a/sysdeps/unix/sysv/i386/time.S +++ b/sysdeps/unix/sysv/i386/time.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,92,96,97,2002 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,96,97,2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -19,12 +19,12 @@ #include #include -SYSCALL (time, 1) +PSEUDO_NOERRNO (time, time, 1) movl 4(%esp), %edx /* Put passed pointer in %edx. */ testl %edx, %edx /* Is it non-nil? */ je L(null) movl %eax, (%edx) /* Yes; store the time there. */ L(null): ret -PSEUDO_END (time) +PSEUDO_END_NOERRNO (time) libc_hidden_def (time) -- cgit 1.4.1