summaryrefslogtreecommitdiff
path: root/kernel/libc/include/time.h
blob: 044e70f22ee947d303903b1e5ccfd1ff7e24155e (plain)
1
2
3
4
5
6
7
8
9
#ifndef TIME_H
#define TIME_H
#include <types.h>

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