diff options
author | kan <kan@FreeBSD.org> | 2006-09-22 01:52:26 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2006-09-22 01:52:26 +0000 |
commit | 5f08ee5bcaa32a20b752d530da87ec5ed9e4c306 (patch) | |
tree | 111e05d253e0ad67e280146762cdbe13b3bf0657 /lib/libc | |
parent | b119ccaff8e08d3a4f04f62511870cea84f6d484 (diff) | |
download | FreeBSD-src-5f08ee5bcaa32a20b752d530da87ec5ed9e4c306.zip FreeBSD-src-5f08ee5bcaa32a20b752d530da87ec5ed9e4c306.tar.gz |
Do not declare __evOptMonoTime static in one place and extern
in another. GCC4 does not like that.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/isc/eventlib_p.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/isc/eventlib_p.h b/lib/libc/isc/eventlib_p.h index 38b1852..1335de7 100644 --- a/lib/libc/isc/eventlib_p.h +++ b/lib/libc/isc/eventlib_p.h @@ -280,6 +280,8 @@ evWait *evFreeWait(evContext_p *ctx, evWait *old); #endif /* Global options */ +#ifndef _LIBC extern int __evOptMonoTime; +#endif #endif /*_EVENTLIB_P_H*/ |