Welcome to mirror list, hosted at ThFree Co, Russian Federation.

time.h « sys « mpw « include - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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__ */