summaryrefslogtreecommitdiff
path: root/klm/util/unistd.hh
blob: 0379c4914769926eb1e4db98d8973d4fbc53a4f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef UTIL_UNISTD_H
#define UTIL_UNISTD_H

#if defined(_WIN32) || defined(_WIN64)

// Windows doesn't define <unistd.h>
//
// So we define what we need here instead:
//
#define STDIN_FILENO=0
#define STDOUT_FILENO=1


#else // Huzzah for POSIX!

#include <unistd.h>

#endif



#endif // UTIL_UNISTD_H