OSDN Git Service

another from SpanKY
authorPeter S. Mazinger <ps.m@gmx.net>
Sat, 14 Jan 2006 03:20:04 +0000 (03:20 -0000)
committerPeter S. Mazinger <ps.m@gmx.net>
Sat, 14 Jan 2006 03:20:04 +0000 (03:20 -0000)
libc/sysdeps/linux/common/stime.c

index bfb7682..9f9615d 100644 (file)
@@ -2,19 +2,19 @@
 /*
  * stime() for uClibc
  *
- * Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.org>
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  *
- * GNU Library General Public License (LGPL) version 2 or later.
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
 
-#define settimeofday __settimeofday
-
 #include "syscalls.h"
 #include <time.h>
 #include <sys/time.h>
 #ifdef __NR_stime
 _syscall1(int, stime, const time_t *, t);
 #else
+libc_hidden_proto(settimeofday)
+
 int stime(const time_t * when)
 {
        struct timeval tv;