svn commit: trunk/uClibc/libc/sysdeps/linux/common

psm at uclibc.org psm at uclibc.org
Sat Jan 14 03:20:05 UTC 2006


Author: psm
Date: 2006-01-13 19:20:04 -0800 (Fri, 13 Jan 2006)
New Revision: 13292

Log:
another from SpanKY

Modified:
   trunk/uClibc/libc/sysdeps/linux/common/stime.c


Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/common/stime.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/stime.c	2006-01-14 03:17:45 UTC (rev 13291)
+++ trunk/uClibc/libc/sysdeps/linux/common/stime.c	2006-01-14 03:20:04 UTC (rev 13292)
@@ -2,19 +2,19 @@
 /*
  * stime() for uClibc
  *
- * Copyright (C) 2000-2004 by Erik Andersen <andersen at codepoet.org>
+ * Copyright (C) 2000-2006 Erik Andersen <andersen at 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;




More information about the uClibc-cvs mailing list