diff options
author | David Henkel-Wallace <gumby@cygnus> | 1991-03-21 21:11:25 +0000 |
---|---|---|
committer | David Henkel-Wallace <gumby@cygnus> | 1991-03-21 21:11:25 +0000 |
commit | 4a81b56152631cda9dc351cb4d2f61f395ee4414 (patch) | |
tree | 562bc9b14bcf414b6c301b769d4ce528c51d4703 /bfd/misc.h | |
parent | 907621824e31daf6504860009535f03676afee4d (diff) | |
download | gdb-4a81b56152631cda9dc351cb4d2f61f395ee4414.zip gdb-4a81b56152631cda9dc351cb4d2f61f395ee4414.tar.gz gdb-4a81b56152631cda9dc351cb4d2f61f395ee4414.tar.bz2 |
Initial revision
Diffstat (limited to 'bfd/misc.h')
-rwxr-xr-x | bfd/misc.h | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/bfd/misc.h b/bfd/misc.h new file mode 100755 index 0000000..05935c2 --- /dev/null +++ b/bfd/misc.h @@ -0,0 +1,93 @@ +/* Copyright (C) 1990, 1991 Free Software Foundation, Inc. + +This file is part of BFD, the Binary File Diddler. + +BFD is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 1, or (at your option) +any later version. + +BFD is distributed 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 General Public License for more details. + +You should have received a copy of the GNU General Public License +along with BFD; see the file COPYING. If not, write to +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +/* $Id$ */ + +/* xoxorich. coelesced from binutils. + * + * Last Mod Mon Feb 18 14:49:51 PST 1991, by rich@cygint.cygnus.com + */ + +#ifndef MISC_H +#define MISC_H 1 + +#include "ranlib.h" + +#ifdef USG +#include <string.h> +#else +#include <strings.h> +#endif /* USG */ + +#ifdef never +#ifdef LOCKS +#undef LOCKS +#endif /* LOCKS */ +#endif /* never */ + + /* used for masking system io calls into stdio. */ + +/* the name, ie, argv[0], of this program. */ + +extern char *program_name; + +/* Current file's name */ + +extern char *input_name; + +/* Current member's name, or 0 if processing a non-library file. */ + +extern char *input_member; + +/* Report an error using the message for the last failed system call, + followed by the string NAME. */ + +#define perror_name(name) perror(concat(program_name, ": error on ", name)) +#define pfatal_with_name(name) {perror_name(name);exit(-1);} + +#ifdef __STDC__ + +extern char *concat(char *a, char *b, char *c); +extern void *xmalloc(unsigned int size); +extern void * xrealloc(char *ptr, int size); +extern void error(char *string, char *arg1, char *arg2, char *arg3); +extern void error_with_file(char *string); +extern void fatal(char *string, char*a1, char*a2, char*a3); +extern void print_file_name(FILE *outfile); +extern void swap_symdef_table(struct symdef *sym, int count); +#else +extern char *alloca(); +extern char *concat(); +extern void * xmalloc(); +extern void *xrealloc(); +extern void error(); +extern void error_with_file(); +extern void fatal(); +extern void print_file_name(); +extern void swap_symdef_table(); +#endif /* __STDC__ */ + +#endif /* MISC_H */ + +/* + * Local Variables: + * comment-column: 0 + * End: + */ + +/* end of misc.h */ |