diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-18 17:20:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-18 17:20:43 +0000 |
commit | 7604414a1c69c6cb90069d239546a5b5970fb32c (patch) | |
tree | e69216a0209bb8ad726dc1ba72cb535fe213244d /sysdeps/unix/sysv/aix/nanosleep.c | |
parent | 318c80d4f9c7ba7ad27c1b91a6bdce2a226fb430 (diff) | |
download | glibc-7604414a1c69c6cb90069d239546a5b5970fb32c.tar glibc-7604414a1c69c6cb90069d239546a5b5970fb32c.tar.gz glibc-7604414a1c69c6cb90069d239546a5b5970fb32c.tar.bz2 glibc-7604414a1c69c6cb90069d239546a5b5970fb32c.zip |
AIX socket implementation.
Diffstat (limited to 'sysdeps/unix/sysv/aix/nanosleep.c')
-rw-r--r-- | sysdeps/unix/sysv/aix/nanosleep.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/aix/nanosleep.c b/sysdeps/unix/sysv/aix/nanosleep.c index 1277319c94..e39606f9c5 100644 --- a/sysdeps/unix/sysv/aix/nanosleep.c +++ b/sysdeps/unix/sysv/aix/nanosleep.c @@ -20,14 +20,12 @@ #include <sys/time.h> #include <sys/types.h> -/* this is declared in <sys/time.h> not <time.h > */ -#if 0 struct timestruc_t { time_t tv_sec; /* seconds. */ suseconds_t tv_nsec; /* and nanoseconds. */ }; -#endif + extern int _nsleep (struct timestruc_t *rqtp, struct timestruc_t *rmtp); |