Version 3.6.0.4, tag libreoffice-3.6.0.4
[LibreOffice.git] / dmake / msdos / borland / bcc45 / config.h
blobb59a431fa317636a170ed65567e397febe6cbb81
1 /* RCS $Id: config.h,v 1.2 2008-03-05 18:36:44 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 /* define this for configurations that don't have the coreleft function
29 * so that the code compiles. To my knowledge coreleft exists only on
30 * Turbo C, but it is needed here since the function is used in many debug
31 * macros. */
32 /*#define coreleft() 0L*/
33 extern unsigned int coreleft();
35 #define SIGQUIT SIGTERM /* turbo C doesn't understand SIGQUIT */
37 /* Turbo-C understands const declarations. */
38 #define CONST const
40 #ifndef MSDOS
41 # define MSDOS 1
42 #endif
44 /* a small problem with pointer to voids on some unix machines needs this */
45 #define DMPVOID void *
47 /* Borland redefined the environment variable, sigh */
48 #define environ _environ
50 /* Have to pull this in for the standard lib defines */
51 #include <io.h>