(linenum→info "unix/slp.c:2238")

binutils/2.18/binutils/bucomm.h

    1: /* bucomm.h -- binutils common include file.
    2:    Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
    3:    2001, 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
    4: 
    5:    This file is part of GNU Binutils.
    6: 
    7:    This program is free software; you can redistribute it and/or modify
    8:    it under the terms of the GNU General Public License as published by
    9:    the Free Software Foundation; either version 3 of the License, or
   10:    (at your option) any later version.
   11: 
   12:    This program is distributed in the hope that it will be useful,
   13:    but WITHOUT ANY WARRANTY; without even the implied warranty of
   14:    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   15:    GNU General Public License for more details.
   16: 
   17:    You should have received a copy of the GNU General Public License
   18:    along with this program; if not, write to the Free Software
   19:    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
   20:    MA 02110-1301, USA.  */
   21: ^L
   22: #ifndef _BUCOMM_H
   23: #define _BUCOMM_H
   24: 
   25: /* Return the filename in a static buffer.  */
   26: const char *bfd_get_archive_filename (bfd *);
   27: 
   28: void bfd_nonfatal (const char *);
   29: 
   30: void bfd_fatal (const char *) ATTRIBUTE_NORETURN;
   31: 
   32: void report (const char *, va_list) ATTRIBUTE_PRINTF(1,0);
   33: 
   34: void fatal (const char *, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
   35: 
   36: void non_fatal (const char *, ...) ATTRIBUTE_PRINTF_1;
   37: 
   38: void set_default_bfd_target (void);
   39: 
   40: void list_matching_formats (char **);
   41: 
   42: void list_supported_targets (const char *, FILE *);
   43: 
   44: void list_supported_architectures (const char *, FILE *);
   45: 
   46: int display_info (void);
   47: 
   48: void print_arelt_descr (FILE *, bfd *, bfd_boolean);
   49: 
   50: char *make_tempname (char *);
   51: char *make_tempdir (char *);
   52: 
   53: bfd_vma parse_vma (const char *, const char *);
   54: 
   55: off_t get_file_size (const char *);
   56: 
   57: extern char *program_name;
   58: 
   59: /* filemode.c */
   60: void mode_string (unsigned long, char *);
   61: 
   62: /* version.c */
   63: extern void print_version (const char *);
   64: 
   65: /* rename.c */
   66: extern void set_times (const char *, const struct stat *);
   67: 
   68: extern int smart_rename (const char *, const char *, int);
   69: 
   70: /* libiberty.  */
   71: void *xmalloc (size_t);
   72: 
   73: void *xrealloc (void *, size_t);
   74: 
   75: #endif /* _BUCOMM_H */
Syntax (Markdown)