You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

time.h 353B

1234567891011121314151617181920
  1. #ifndef _SYS_TIME_H
  2. #define _SYS_TIME_H
  3. /** @file
  4. *
  5. * Date and time
  6. */
  7. FILE_LICENCE ( GPL2_OR_LATER );
  8. #include <stdint.h>
  9. /** Seconds since the Epoch
  10. *
  11. * We use a 64-bit type to avoid Y2K38 issues, since we may have to
  12. * handle distant future dates (e.g. X.509 certificate expiry dates).
  13. */
  14. typedef int64_t time_t;
  15. #endif /* _SYS_TIME_H */