Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2006-02-15 13:26:30 +0300
committerCorinna Vinschen <corinna@vinschen.de>2006-02-15 13:26:30 +0300
commit680e0f1ffd273ac462a6fb5cbf84d9d751d9f9cb (patch)
treebd2b3850598f3fbff684c2f3b1c8fe88ccdb462c /newlib/libc/include/sys/time.h
parent00bc9d7ff2e02911cbe77f3867468671c3a5039b (diff)
* libc/include/sys/time.h (struct timeval): Change member types
according to SUSv3. * libc/include/sys/types.h (useconds_t): Change to unsigned according to SUSv3. (suseconds_t): Define type.
Diffstat (limited to 'newlib/libc/include/sys/time.h')
-rw-r--r--newlib/libc/include/sys/time.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/include/sys/time.h b/newlib/libc/include/sys/time.h
index 346747aec..df3164941 100644
--- a/newlib/libc/include/sys/time.h
+++ b/newlib/libc/include/sys/time.h
@@ -14,8 +14,8 @@ extern "C" {
#ifndef _WINSOCK_H
struct timeval {
- long tv_sec;
- long tv_usec;
+ time_t tv_sec;
+ suseconds_t tv_usec;
};
struct timezone {