fixed some C extension tagging
This commit is contained in:
parent
59cd28a315
commit
382f19732a
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@
|
|||
#include <types/timer_t.h>
|
||||
#include <types/pid_t.h>
|
||||
struct sigevent;
|
||||
#endif
|
||||
#include <types/locale_t.h>
|
||||
#endif
|
||||
|
||||
struct tm {
|
||||
unsigned int tm_sec : 6;
|
||||
|
@ -45,12 +45,12 @@ struct tm {
|
|||
int tm_isdst : 2;
|
||||
};
|
||||
|
||||
#ifdef _POSIX_C_SOURCE
|
||||
struct timespec {
|
||||
time_t tv_sec;
|
||||
long int tv_nsec;
|
||||
};
|
||||
|
||||
#ifdef _POSIX_C_SOURCE
|
||||
struct itimerspec {
|
||||
struct timespec it_interval;
|
||||
struct timespec it_value;
|
||||
|
|
Loading…
Reference in a new issue