64 lines
1.4 KiB
C
64 lines
1.4 KiB
C
/* Copyright (C) 1992, 1993, 1994, 1995, 1996 the Florida State University
|
|
Distributed by the Florida State University under the terms of the
|
|
GNU Library General Public License.
|
|
|
|
This file is part of Pthreads.
|
|
|
|
Pthreads is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation (version 2).
|
|
|
|
Pthreads is distributed "AS IS" in the hope that it will be
|
|
useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
See the GNU Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with Pthreads; see the file COPYING. If not, write
|
|
to the Free Software Foundation, 675 Mass Ave, Cambridge,
|
|
MA 02139, USA.
|
|
|
|
Report problems and direct all questions to:
|
|
|
|
pthreads-bugs@ada.cs.fsu.edu
|
|
|
|
%@(#)config_header.c 3.14% %11/8/00%
|
|
*/
|
|
|
|
/*
|
|
* configuration header file to identify compile options
|
|
*/
|
|
|
|
#ifndef C_INTERFACE_NP
|
|
#define C_INTERFACE_NP
|
|
#endif
|
|
|
|
#ifndef SRP_NP
|
|
#define SRP_NP
|
|
#endif
|
|
|
|
#ifndef __dos__
|
|
#define __dos__
|
|
#endif
|
|
|
|
#ifndef _POSIX
|
|
#define _POSIX
|
|
#endif
|
|
|
|
#ifndef CLEANUP_HEAP_NP
|
|
#define CLEANUP_HEAP_NP
|
|
#endif
|
|
|
|
#ifndef C_CONTEXT_SWITCH_NP
|
|
#define C_CONTEXT_SWITCH_NP
|
|
#endif
|
|
|
|
#ifndef RELEASE_NP
|
|
#define RELEASE_NP 5
|
|
#endif
|
|
|
|
#ifndef _M_UNIX
|
|
#if defined(M_UNIX) || defined(__M_UNIX)
|
|
#define _M_UNIX
|
|
#endif
|
|
#endif
|