8d21826f6ec4e5b26d60302b3d34481abc3824fd
[deliverable/binutils-gdb.git] / bfd / hosts / alphavms.h
1 /* alphavms.h -- BFD definitions for an openVMS host
2 Copyright 1996, 2000, 2001, 2005, 2007, 2008, 2009
3 Free Software Foundation, Inc.
4 Written by Klaus Kämpf (kkaempf@progis.de)
5 of proGIS Softwareentwicklung, Aachen, Germany
6
7 This file is part of BFD, the Binary File Descriptor library.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
23
24 #ifdef PACKAGE
25 #error sysdep.h must be included in lieu of config.h
26 #endif
27
28 #include "config.h"
29 #include "ansidecl.h"
30
31 #include <stddef.h>
32 #include <fcntl.h>
33 #include <errno.h>
34 #include <stdio.h>
35 #include <sys/types.h>
36 #include <sys/stat.h>
37 #include <string.h>
38 #include <sys/file.h>
39 #include <stdlib.h>
40 #include <unixlib.h>
41 #include <unixio.h>
42 #include <time.h>
43
44 #include "filenames.h"
45 #include "fopen-vms.h"
46
47 #define NO_FCNTL 1
48
49 #ifndef O_ACCMODE
50 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
51 #endif
52
53 extern int getpagesize (void);
54 extern char *stpcpy (char *, const char *);
55
56 /* No intl. */
57 #define gettext(Msgid) (Msgid)
58 #define dgettext(Domainname, Msgid) (Msgid)
59 #define dcgettext(Domainname, Msgid, Category) (Msgid)
60 #define textdomain(Domainname) while (0) /* nothing */
61 #define bindtextdomain(Domainname, Dirname) while (0) /* nothing */
62 #define _(String) (String)
63 #define N_(String) (String)
This page took 0.032906 seconds and 4 git commands to generate.