-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathosincludes.h
39 lines (36 loc) · 880 Bytes
/
osincludes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* Copyright (C) 2000 by Massimiliano Ghilardi
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#ifndef TWIN_OSINCLUDES_H
#define TWIN_OSINCLUDES_H
#include <time.h>
#include <sys/types.h>
#ifdef TW_HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#ifdef TW_HAVE_FCNTL_H
#include <fcntl.h>
#endif
#ifdef TW_HAVE_LIMITS_H
#include <limits.h>
#endif
#ifdef TW_HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef TW_HAVE_MACHINE_PARAM_H
#include <machine/param.h>
#endif
#ifdef TW_HAVE_SYS_FILIO_H
#include <sys/filio.h>
#endif
#ifdef TW_HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#ifdef TW_HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#endif /* TWIN_OSINCLUDES_H */