summaryrefslogtreecommitdiffstats
path: root/include/mpw/sys/time.h
blob: f9e485232a21915ab471ac830c1a2039a5ad863a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Imitation sys/time.h. */

#ifndef __SYS_TIME_H__
#define __SYS_TIME_H__

#include <time.h>

struct timeval {
  long tv_sec;
  long tv_usec;
};

#endif /* __SYS_TIME_H__ */