time32.h 274 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __VDSO_TIME32_H
  3. #define __VDSO_TIME32_H
  4. typedef s32 old_time32_t;
  5. struct old_timespec32 {
  6. old_time32_t tv_sec;
  7. s32 tv_nsec;
  8. };
  9. struct old_timeval32 {
  10. old_time32_t tv_sec;
  11. s32 tv_usec;
  12. };
  13. #endif /* __VDSO_TIME32_H */