2003-01-29 Jason Tishler <jason@tishler.net>
* libc/include/time.h: Declare nanosleep() under Cygwin.
This commit is contained in:
parent
01e3c89709
commit
4700b8293a
|
@ -1,3 +1,7 @@
|
||||||
|
2003-01-29 Jason Tishler <jason@tishler.net>
|
||||||
|
|
||||||
|
* libc/include/time.h: Declare nanosleep() under Cygwin.
|
||||||
|
|
||||||
2003-01-24 Nick Clifton <nickc@redhat.com>
|
2003-01-24 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* Add sh2e support:
|
* Add sh2e support:
|
||||||
|
|
|
@ -163,6 +163,16 @@ int _EXFUN(nanosleep, (const struct timespec *rqtp, struct timespec *rmtp));
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#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 */
|
#endif /* _POSIX_TIMERS */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Reference in New Issue