Version 3.6.0.4, tag libreoffice-3.6.0.4
[LibreOffice.git] / dmake / msdos / zortech / config.h
blobdabc8b014fe661085866dbfa054132d55105926d
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.
11 -- AUTHOR
12 -- Dennis Vadura, dvadura@dmake.wticorp.com
14 -- WWW
15 -- http://dmake.wticorp.com/
17 -- COPYRIGHT
18 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
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>/readme/license.txt.
24 -- LOG
25 -- Use cvs log to obtain detailed change logs.
28 /* in sysintf.c: SIGQUIT is used, this is not defined in ZTC */
29 #ifndef SIGQUIT
30 # define SIGQUIT SIGTERM
31 #endif
33 /* in sysintf.c: tzset is not supported by ZTC */
34 #define tzset()
36 /* ZTC uses it's own swapping spawn. */
37 #define spawnvpe(a,b,c,d) spawnvp(a,b,c)
39 #ifndef CONST
40 # define CONST const
41 #endif
43 #ifndef MSDOS
44 # define MSDOS 1
45 #endif
47 extern unsigned _psp;
49 /* a small problem with pointer to voids on some unix machines needs this */
50 #define DMPVOID void *
52 #include <io.h>