GDB (API)
|
00001 /* Basic host-specific definitions for GDB. 00002 Copyright (C) 1986-2013 Free Software Foundation, Inc. 00003 00004 This file is part of GDB. 00005 00006 This program is free software; you can redistribute it and/or modify 00007 it under the terms of the GNU General Public License as published by 00008 the Free Software Foundation; either version 3 of the License, or 00009 (at your option) any later version. 00010 00011 This program is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 GNU General Public License for more details. 00015 00016 You should have received a copy of the GNU General Public License 00017 along with this program. If not, see <http://www.gnu.org/licenses/>. */ 00018 00019 #ifndef HOST_DEFS_H 00020 #define HOST_DEFS_H 00021 00022 #ifdef __MSDOS__ 00023 # define CANT_FORK 00024 # define GLOBAL_CURDIR 00025 # define DIRNAME_SEPARATOR ';' 00026 #endif 00027 00028 #if !defined (__CYGWIN__) && defined (_WIN32) 00029 # define DIRNAME_SEPARATOR ';' 00030 #endif 00031 00032 #ifndef DIRNAME_SEPARATOR 00033 #define DIRNAME_SEPARATOR ':' 00034 #endif 00035 00036 #ifndef SLASH_STRING 00037 #define SLASH_STRING "/" 00038 #endif 00039 00040 #endif /* HOST_DEFS_H */