summaryrefslogtreecommitdiff
path: root/kernel/includes/time.h
blob: aa9a4ce4335b0daeb92d96b0e66358c3870da7c7 (plain)
1
2
3
4
5
6
7
8
9
10
typedef int clockid_t;
#ifndef TIME_H
#define TIME_H
#include <sys/types.h>

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