00001 /* Random host-dependent support code. 00002 Copyright 1995, 1997, 2000 Free Software Foundation, Inc. 00003 Written by Ken Raeburn. 00004 00005 This file is part of libopcodes, the opcodes library. 00006 00007 This program is free software; you can redistribute it and/or modify 00008 it under the terms of the GNU General Public License as published by 00009 the Free Software Foundation; either version 2 of the License, or 00010 (at your option) any later version. 00011 00012 This program is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 GNU General Public License for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with this program; if not, write to the Free Software 00019 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 00020 00021 /* Do system-dependent stuff, mainly driven by autoconf-detected info. 00022 00023 Well, some generic common stuff is done here too, like including 00024 ansidecl.h. That's because the .h files in bfd/hosts files I'm 00025 trying to replace often did that. If it can be dropped from this 00026 file (check in a non-ANSI environment!), it should be. */ 00027 00028 #include "config.h" 00029 00030 #include "ansidecl.h" 00031 00032 #ifdef HAVE_STDLIB_H 00033 #include <stdlib.h> 00034 #endif 00035 00036 #ifdef HAVE_STRING_H 00037 #include <string.h> 00038 #else 00039 #ifdef HAVE_STRINGS_H 00040 #include <strings.h> 00041 #endif 00042 #endif
1.5.6