diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-01-29 23:29:30 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-01-29 23:29:30 +0000 |
commit | 4700b8293a51a466b9558244c376ff1e614de80e (patch) | |
tree | 8e8a5e8f39882d5081f2f6453080472ce912c49e /newlib/libc/include/time.h | |
parent | 01e3c89709d01415b3f5a363714104460a4a43e4 (diff) | |
download | cygnal-4700b8293a51a466b9558244c376ff1e614de80e.tar.gz cygnal-4700b8293a51a466b9558244c376ff1e614de80e.tar.bz2 cygnal-4700b8293a51a466b9558244c376ff1e614de80e.zip |
2003-01-29 Jason Tishler <jason@tishler.net>
* libc/include/time.h: Declare nanosleep() under Cygwin.
Diffstat (limited to 'newlib/libc/include/time.h')
-rw-r--r-- | newlib/libc/include/time.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/newlib/libc/include/time.h b/newlib/libc/include/time.h index 53e3c4e89..f83c38d05 100644 --- a/newlib/libc/include/time.h +++ b/newlib/libc/include/time.h @@ -163,6 +163,16 @@ int _EXFUN(nanosleep, (const struct timespec *rqtp, struct timespec *rmtp)); #ifdef __cplusplus } #endif +#else +#ifdef __CYGWIN__ +#ifdef __cplusplus +extern "C" { +#endif +int _EXFUN(nanosleep, (const struct timespec *rqtp, struct timespec *rmtp)); +#ifdef __cplusplus +} +#endif +#endif /* __CYGWIN__ */ #endif /* _POSIX_TIMERS */ #ifdef __cplusplus |