fixed some C extension tagging

This commit is contained in:
Kat R. 2021-07-26 00:44:48 -05:00
parent 59cd28a315
commit 382f19732a
1 changed files with 2 additions and 2 deletions

View File

@ -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;