1 /* sysdep.h -- handle host dependencies for the BFD library
2 Copyright 1995, 1996, 1997, 1998, 1999, 2000
3 Free Software Foundation, Inc.
4 Written by Cygnus Support.
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
34 #include <sys/types.h>
38 #if !(defined(errno) || defined(_MSC_VER) && defined(_INC_ERRNO))
48 extern char *strchr ();
49 extern char *strrchr ();
57 #ifdef TIME_WITH_SYS_TIME
61 #ifdef HAVE_SYS_TIME_H
72 #ifdef USE_BINARY_FOPEN
73 #include "fopen-bin.h"
75 #include "fopen-same.h"
81 #ifdef HAVE_SYS_FILE_H
96 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
106 #include "filenames.h"
108 #ifdef NEED_DECLARATION_STRSTR
109 extern char *strstr ();
112 #ifdef NEED_DECLARATION_MALLOC
113 extern PTR
malloc ();
116 #ifdef NEED_DECLARATION_REALLOC
117 extern PTR
realloc ();
120 #ifdef NEED_DECLARATION_FREE
124 #ifdef NEED_DECLARATION_GETENV
125 extern char *getenv ();
128 /* Define offsetof for those systems which lack it */
131 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
136 /* Note the use of dgetext() and PACKAGE here, rather than gettext().
138 This is because the code in this directory is used to build a library which
139 will be linked with code in other directories to form programs. We want to
140 maintain a seperate translation file for this directory however, rather
141 than being forced to merge it with that of any program linked to libbfd.
142 This is a library, so it cannot depend on the catalog currently loaded.
144 In order to do this, we have to make sure that when we extract messages we
145 use the OPCODES domain rather than the domain of the program that included
146 the bfd library, (eg OBJDUMP). Hence we use dgettext (PACKAGE, String)
147 and define PACKAGE to be 'bfd'. (See the code in configure). */
148 #define _(String) dgettext (PACKAGE, String)
150 #define N_(String) gettext_noop (String)
152 #define N_(String) (String)
155 # define gettext(Msgid) (Msgid)
156 # define dgettext(Domainname, Msgid) (Msgid)
157 # define dcgettext(Domainname, Msgid, Category) (Msgid)
158 # define textdomain(Domainname) while (0) /* nothing */
159 # define bindtextdomain(Domainname, Dirname) while (0) /* nothing */
160 # define _(String) (String)
161 # define N_(String) (String)
164 #endif /* ! defined (BFD_SYSDEP_H) */