1 /* RCS  $Id: config.h,v 1.2 2008-03-05 18:37:45 kz Exp $
2 --
3 -- SYNOPSIS
4 --      Configurarion include file.
5 --
6 -- DESCRIPTION
7 -- 	There is one of these for each specific machine configuration.
8 --	It can be used to further tweek the machine specific sources
9 --	so that they compile.
10 --
11 -- AUTHOR
12 --      Dennis Vadura, dvadura@dmake.wticorp.com
13 --
14 -- WWW
15 --      http://dmake.wticorp.com/
16 --
17 -- COPYRIGHT
18 --      Copyright (c) 1996,1997 by WTI Corp.  All rights reserved.
19 --
20 --      This program is NOT free software; you can redistribute it and/or
21 --      modify it under the terms of the Software License Agreement Provided
22 --      in the file <distribution-root>/COPYING.
23 --
24 -- LOG
25 --      Use cvs log to obtain detailed change logs.
26 */
27 
28 /* in sysintf.c: SIGQUIT is used, this is not defined in ZTC */
29 #ifndef SIGQUIT
30 #   define SIGQUIT SIGTERM
31 #endif
32 
33 /* in sysintf.c: tzset is not supported by ZTC */
34 #define tzset()
35 
36 /* ZTC uses it's own swapping spawn. */
37 #define spawnvpe(a,b,c,d) spawnvp(a,b,c)
38 
39 #ifndef CONST
40 #   define CONST const
41 #endif
42 
43 #ifndef MSDOS
44 #   define MSDOS 1
45 #endif
46 
47 extern unsigned _psp;
48 
49 /* a small problem with pointer to voids on some unix machines needs this */
50 #define DMPVOID void *
51 
52 #include <io.h>
53