|
Revision 3679, 0.5 kB
(checked in by miyoshi, 4 years ago)
|
* inc/arpa/inet.h: Sync up with Emacs CVS.
* inc/netdb.h: Ditto.
* inc/netinet/in.h: Ditto.
* inc/sys/dir.h: Ditto.
* inc/sys/file.h: Ditto.
* inc/sys/ioctl.h: Ditto.
* inc/sys/param.h: Ditto.
* inc/sys/socket.h: Ditto.
* inc/sys/time.h: Ditto.
* inc/unistd.h: Ditto.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
#ifndef SYS_TIME_H_INCLUDED |
|---|
| 2 |
#define SYS_TIME_H_INCLUDED |
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
struct timeval |
|---|
| 9 |
{ |
|---|
| 10 |
long tv_sec; |
|---|
| 11 |
long tv_usec; |
|---|
| 12 |
}; |
|---|
| 13 |
struct timezone |
|---|
| 14 |
{ |
|---|
| 15 |
int tz_minuteswest; |
|---|
| 16 |
int tz_dsttime; |
|---|
| 17 |
}; |
|---|
| 18 |
|
|---|
| 19 |
void gettimeofday (struct timeval *, struct timezone *); |
|---|
| 20 |
|
|---|
| 21 |
#endif |
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|