summaryrefslogtreecommitdiff
path: root/Build/source/utils/psutils/psutils-1.17/config.h
blob: 88af01a9027df5f2ccbb355d4e30b4a26928f6bc (plain)
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
/*
 * Copyright (C) Angus J. C. Duggan 1991-1995
 * See file LICENSE for details.
 * OS specific configuration for PSUtils
 */

#if defined(MSDOS) || defined(WINNT) || defined(WIN32)
#define TMPDIR "\\tmp"
#define OPEN_READ "rb"
#define OPEN_WRITE "wb"
#include <fcntl.h>
#include <io.h>
#if defined(WIN32) && !defined(__MINGW32__)
#include <win32lib.h>
#endif /* WIN32 && !__MINGW32__ */
#else /* ! MSDOS && ! WINNT && ! WIN32 */
#if defined(OS2)
#define TMPDIR "."
#define OPEN_READ "rb"
#define OPEN_WRITE "wb"
#else /* ! OS2 */
#define OPEN_READ "r"
#define OPEN_WRITE "w"
#ifdef VMS
#define unlink delete
#define TMPDIR "/tmp"
#else /* assumes UNIX-like OS */
#include <unistd.h>
#define TMPDIR "/tmp"
#endif /* ! VMS */
#endif /* ! OS2 */
#endif /* ! MSDOS && ! WINNT && !WIN32 */