home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
proglang
/
dmake38b.arj
/
CONFIG.H
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-23
|
2KB
|
60 lines
/* RCS -- $Header: /u2/dvadura/src/generic/dmake/src/msdos/ztcdos/config.h,v 1.1 1992/01/24 03:27:49 dvadura Exp $
-- SYNOPSIS -- Configurarion include file.
--
-- DESCRIPTION
-- There is one of these for each specific machine configuration.
-- It can be used to further tweek the machine specific sources
-- so that they compile.
--
-- AUTHOR
-- Dennis Vadura, dvadura@watdragon.uwaterloo.ca
-- CS DEPT, University of Waterloo, Waterloo, Ont., Canada
--
-- COPYRIGHT
-- Copyright (c) 1990 by Dennis Vadura. All rights reserved.
--
-- This program is free software; you can redistribute it and/or
-- modify it under the terms of the GNU General Public License
-- (version 1), as published by the Free Software Foundation, and
-- found in the file 'LICENSE' included with this distribution.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warrant of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
--
-- LOG
-- $Log: config.h,v $
* Revision 1.1 1992/01/24 03:27:49 dvadura
* dmake Version 3.8, Initial revision
*
*/
/* in sysintf.c: SIGQUIT is used, this is not defined in ZTC */
#ifndef SIGQUIT
# define SIGQUIT SIGTERM
#endif
/* in sysintf.c: tzset is not supported by ZTC */
#define tzset()
/* ZTC uses it's own swapping spawn. */
#define spawnvpe(a,b,c,d) spawnvp(a,b,c)
#ifndef CONST
# define CONST const
#endif
#ifndef MSDOS
# define MSDOS 1
#endif
extern unsigned _psp;
/* a small problem with pointer to voids on some unix machines needs this */
#define PVOID void *