* time/time.h: Add forward for struct sigevent.  Unix98 maybe
	requires to have a full definition but we wait for a bug report
	based on the test suite.
This commit is contained in:
Ulrich Drepper 1999-07-27 00:39:04 +00:00
parent be1dd9498b
commit 252ff6b676
2 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,9 @@
1999-07-26 Ulrich Drepper <drepper@cygnus.com>
* time/time.h: Add forward for struct sigevent. Unix98 maybe
requires to have a full definition but we wait for a bug report
based on the test suite.
* sysdeps/generic/clock_getres.c: New file.
* sysdeps/generic/clock_gettime.c: New file.
* sysdeps/generic/clock_settime.c: New file.

View File

@ -127,6 +127,10 @@ struct itimerspec
struct timespec it_interval;
struct timespec it_value;
};
/* We can use a simple forward declaration. */
struct sigevent;
#endif /* POSIX.1b */