c7cd04f5b4
2007/11/11 00:03:33 vq 1.1.1.1.176.1: #i83523# Rename macro PVOID to DMPVOID to avoid problems when including windows.h.
52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
/* RCS $Id: config.h,v 1.2 2008-03-05 18:37:45 kz 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@dmake.wticorp.com
|
|
--
|
|
-- WWW
|
|
-- http://dmake.wticorp.com/
|
|
--
|
|
-- COPYRIGHT
|
|
-- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
|
|
--
|
|
-- This program is NOT free software; you can redistribute it and/or
|
|
-- modify it under the terms of the Software License Agreement Provided
|
|
-- in the file <distribution-root>/readme/license.txt.
|
|
--
|
|
-- LOG
|
|
-- Use cvs log to obtain detailed change logs.
|
|
*/
|
|
|
|
/* 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 DMPVOID void *
|
|
|
|
#include <io.h>
|