Line 1... |
Line 1... |
/* alphavms.h -- BFD definitions for an openVMS host
|
/* alphavms.h -- BFD definitions for an openVMS host
|
Copyright 1996, 2000, 2001, 2007 Free Software Foundation, Inc.
|
Copyright 1996, 2000, 2001, 2005, 2007, 2008, 2009
|
|
Free Software Foundation, Inc.
|
Written by Klaus Kämpf (kkaempf@progis.de)
|
Written by Klaus Kämpf (kkaempf@progis.de)
|
of proGIS Softwareentwicklung, Aachen, Germany
|
of proGIS Softwareentwicklung, Aachen, Germany
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
Line 32... |
Line 33... |
#include <unixlib.h>
|
#include <unixlib.h>
|
#include <unixio.h>
|
#include <unixio.h>
|
#include <time.h>
|
#include <time.h>
|
|
|
#include "bfd.h"
|
#include "bfd.h"
|
|
#include "filenames.h"
|
|
|
#ifndef BFD_HOST_64_BIT
|
#ifndef BFD_HOST_64_BIT
|
/* Make the basic types 64-bit quantities on the host.
|
/* Make the basic types 64-bit quantities on the host.
|
Also provide the support macros BFD needs. */
|
Also provide the support macros BFD needs. */
|
# ifdef __GNUC__
|
# ifdef __GNUC__
|
Line 64... |
Line 66... |
|
|
#ifndef O_ACCMODE
|
#ifndef O_ACCMODE
|
#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
|
#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
|
#endif
|
#endif
|
|
|
extern int getpagesize PARAMS ((void));
|
extern int getpagesize (void);
|
|
extern char *stpcpy (char *, const char *);
|
|
|
|
/* No intl. */
|
|
#define gettext(Msgid) (Msgid)
|
|
#define dgettext(Domainname, Msgid) (Msgid)
|
|
#define dcgettext(Domainname, Msgid, Category) (Msgid)
|
|
#define textdomain(Domainname) while (0) /* nothing */
|
|
#define bindtextdomain(Domainname, Dirname) while (0) /* nothing */
|
|
#define _(String) (String)
|
|
#define N_(String) (String)
|
|
|
No newline at end of file
|
No newline at end of file
|