diff options
Diffstat (limited to 'LibC/time.h')
-rw-r--r-- | LibC/time.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/LibC/time.h b/LibC/time.h index acce4816bd..dd1e20cf2d 100644 --- a/LibC/time.h +++ b/LibC/time.h @@ -1,11 +1,12 @@ #pragma once -#include "types.h" +#include <sys/cdefs.h> +#include <sys/types.h> -extern "C" { +__BEGIN_DECLS int gettimeofday(timeval*); time_t time(time_t*); -} +__END_DECLS |