diff options
Diffstat (limited to 'src/sysdeps')
-rw-r--r-- | src/sysdeps/tryfutimens.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sysdeps/tryfutimens.c b/src/sysdeps/tryfutimens.c index 0c4b2af..222fea5 100644 --- a/src/sysdeps/tryfutimens.c +++ b/src/sysdeps/tryfutimens.c @@ -6,6 +6,10 @@ #define __EXTENSIONS__ #endif +#include <sys/types.h> +#include <sys/stat.h> +#include <time.h> + int main (void) { struct timespec foo[2] = { { .tv_sec = 0, .tv_nsec = 0 }, { .tv_sec = 0, .tv_nsec = 0 } } ; |