aboutsummaryrefslogtreecommitdiff
path: root/bfd/hosts/m68kv4.h
diff options
context:
space:
mode:
authorStan Shebs <shebs@codesourcery.com>1994-07-16 21:02:53 +0000
committerStan Shebs <shebs@codesourcery.com>1994-07-16 21:02:53 +0000
commitef8b133d8cda2d475a29dc72b6fdc2fa844921ca (patch)
treec6e2510c8a74b89a6cdf109d873bd61ef94ffabf /bfd/hosts/m68kv4.h
parentebe541dfcbfc9cc200ffbe7ee603e0c143f74fd4 (diff)
downloadgdb-ef8b133d8cda2d475a29dc72b6fdc2fa844921ca.zip
gdb-ef8b133d8cda2d475a29dc72b6fdc2fa844921ca.tar.gz
gdb-ef8b133d8cda2d475a29dc72b6fdc2fa844921ca.tar.bz2
* configure.host (m68*-atari-sysv4*): New host.
(m68*-cbm-sysv4*): Use m68kv4 instead of amix. * hosts/amix.h: Remove. * hosts/m68kv4.h: New file, was amix.h.
Diffstat (limited to 'bfd/hosts/m68kv4.h')
-rw-r--r--bfd/hosts/m68kv4.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/bfd/hosts/m68kv4.h b/bfd/hosts/m68kv4.h
new file mode 100644
index 0000000..6860390
--- /dev/null
+++ b/bfd/hosts/m68kv4.h
@@ -0,0 +1,51 @@
+/* Amiga/Atari SVR4 Unix host system */
+
+#include <ansidecl.h>
+#include <fcntl.h>
+#include <errno.h>
+#include <stdio.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <utime.h>
+#include <ctype.h>
+#include <string.h>
+#include <sys/file.h>
+
+#ifndef O_ACCMODE
+#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
+#endif
+#define SEEK_SET 0
+#define SEEK_CUR 1
+
+#define POSIX_UTIME
+#define HAVE_PROCFS /* This host has /proc support */
+
+extern void abort PARAMS ((void));
+extern int close PARAMS ((int));
+extern void exit PARAMS ((int));
+extern int fclose PARAMS ((FILE*));
+extern void free PARAMS ((PTR));
+extern int fseek PARAMS ((FILE*, long, int));
+extern int getgid PARAMS (());
+extern int getuid PARAMS (());
+extern PTR malloc PARAMS ((unsigned));
+extern void perror PARAMS ((CONST char *));
+extern int qsort PARAMS ((void *data, int els, int siz, int func()));
+extern PTR realloc PARAMS ((PTR, unsigned));
+
+extern char *getenv();
+extern int chmod();
+extern int fstat();
+extern int stat();
+extern int strtol();
+
+extern char *ctime();
+extern int _flsbuf();
+extern int fclose();
+extern int utimes();
+extern int vfprintf();
+extern long atol();
+extern int fputc();
+extern int unlink();
+
+#include "fopen-same.h"