Error Buddy
Do you have an error message from your application? Then find the answer with Error Buddy. You can search over 40000 source code files and troubleshooting documents using our beta lucene/nutch search interface or if you prefer, search as normal using google. With LXR technology you can drill right down into the line of source code where it came from with full cross-referencing.
If after searching you didn't get your ideal answer, or you are still unclear what the error means, you can choose to post that question to the community forums following the link included in the search results.
[1.6]001 /* Random host-dependent support code. 002 Copyright 1995, 1997, 2000 Free Software Foundation, Inc. 003 Written by Ken Raeburn. 004 005 This file is part of libopcodes, the opcodes library. 006 007 This program is free software; you can redistribute it and/or modify 008 it under the terms of the GNU General Public License as published by 009 the Free Software Foundation; either version 2 of the License, or 010 (at your option) any later version. 011 012 This program is distributed in the hope that it will be useful, 013 but WITHOUT ANY WARRANTY; without even the implied warranty of 014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 015 GNU General Public License for more details. 016 017 You should have received a copy of the GNU General Public License 018 along with this program; if not, write to the Free Software 019 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 020 021 /* Do system-dependent stuff, mainly driven by autoconf-detected info. 022 023 Well, some generic common stuff is done here too, like including 024 ansidecl.h. That's because the .h files in bfd/hosts files I'm 025 trying to replace often did that. If it can be dropped from this 026 file (check in a non-ANSI environment!), it should be. */ 027 028 #include "config.h" 029 030 #include "ansidecl.h" 031 032 #ifdef HAVE_STDLIB_H 033 #include <stdlib.h> 034 #endif 035 036 #ifdef HAVE_STRING_H 037 #include <string.h> 038 #else 039 #ifdef HAVE_STRINGS_H 040 #include <strings.h> 041 #endif 042 #endif
Testing
