summaryrefslogtreecommitdiff
path: root/kernel/libc/include/time.h
blob: 4e356d13f86f76dc6b11a5e209b2a07a7a0b7e83 (plain)
1
2
3
4
5
6
#include <types.h>

struct timespec {
  time_t tv_sec; // Seconds.
  long tv_nsec;  // Nanoseconds.
};