Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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 */