Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/klibc/time.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (show annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 9 months ago) by niro
File MIME type: text/plain
File size: 251 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 /*
2 * time.c
3 */
4
5 #include <time.h>
6 #include <sys/time.h>
7 #include <sys/syscall.h>
8
9 #ifndef __NR_time
10
11 time_t time(time_t * t)
12 {
13 struct timeval tv;
14
15 gettimeofday(&tv, NULL);
16
17 if (t)
18 *t = (time_t) tv.tv_sec;
19
20 return (time_t) tv.tv_sec;
21 }
22
23 #endif