summaryrefslogtreecommitdiffstats
path: root/ld/sysdep.h
diff options
context:
space:
mode:
Diffstat (limited to 'ld/sysdep.h')
-rw-r--r--ld/sysdep.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/ld/sysdep.h b/ld/sysdep.h
index 97fe17d393..9dfae105d5 100644
--- a/ld/sysdep.h
+++ b/ld/sysdep.h
@@ -27,6 +27,7 @@
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
+#include <stdarg.h>
#ifdef HAVE_STRING_H
#include <string.h>
@@ -71,12 +72,56 @@ extern char *strrchr ();
# define REALPATH(a,b) NULL
#endif
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
+
#ifdef USE_BINARY_FOPEN
#include "fopen-bin.h"
#else
#include "fopen-same.h"
#endif
+#ifdef HAVE_FCNTL_H
+#include <fcntl.h>
+#else
+#ifdef HAVE_SYS_FILE_H
+#include <sys/file.h>
+#endif
+#endif
+
+/* This is both more precise than and includes HAVE_DLFCN_H. */
+#ifdef ENABLE_PLUGINS
+#include <dlfcn.h>
+#endif
+
+#ifndef O_RDONLY
+#define O_RDONLY 0
+#endif
+#ifndef O_WRONLY
+#define O_WRONLY 1
+#endif
+#ifndef O_RDWR
+#define O_RDWR 2
+#endif
+#ifndef O_ACCMODE
+#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
+#endif
+/* Systems that don't already define this, don't need it. */
+#ifndef O_BINARY
+#define O_BINARY 0
+#endif
+
+#ifndef SEEK_SET
+#define SEEK_SET 0
+#endif
+#ifndef SEEK_CUR
+#define SEEK_CUR 1
+#endif
+#ifndef SEEK_END
+#define SEEK_END 2
+#endif
+
#if !HAVE_DECL_STRSTR
extern char *strstr ();
#endif
OpenPOWER on IntegriCloud