refactor iconv conversion descriptor encoding/decoding
[musl] / include / sys / time.h
index bfe1414..c5cab81 100644 (file)
@@ -10,15 +10,11 @@ extern "C" {
 
 int gettimeofday (struct timeval *__restrict, void *__restrict);
 
-#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) \
- || defined(_BSD_SOURCE)
-
 #define ITIMER_REAL    0
 #define ITIMER_VIRTUAL 1
 #define ITIMER_PROF    2
 
-struct itimerval
-{
+struct itimerval {
        struct timeval it_interval;
        struct timeval it_value;
 };
@@ -27,8 +23,6 @@ int getitimer (int, struct itimerval *);
 int setitimer (int, const struct itimerval *__restrict, struct itimerval *__restrict);
 int utimes (const char *, const struct timeval [2]);
 
-#endif
-
 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
 struct timezone {
        int tz_minuteswest;