From be8b04496302184c6e8f04d6179f9c3afc50aeb6 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Wed, 6 Jan 2016 01:47:28 -0800 Subject: initial commit --- include/mpw/sys/time.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 include/mpw/sys/time.h (limited to 'include/mpw/sys/time.h') diff --git a/include/mpw/sys/time.h b/include/mpw/sys/time.h new file mode 100755 index 0000000..f9e4852 --- /dev/null +++ b/include/mpw/sys/time.h @@ -0,0 +1,13 @@ +/* Imitation sys/time.h. */ + +#ifndef __SYS_TIME_H__ +#define __SYS_TIME_H__ + +#include + +struct timeval { + long tv_sec; + long tv_usec; +}; + +#endif /* __SYS_TIME_H__ */ -- cgit v1.2.3