aboutsummaryrefslogtreecommitdiff
path: root/Linux
diff options
context:
space:
mode:
Diffstat (limited to 'Linux')
-rwxr-xr-x[-rw-r--r--]Linux/386/bin/data2cbin51457 -> 56596 bytes
-rwxr-xr-x[-rw-r--r--]Linux/386/bin/iyaccbin113053 -> 127036 bytes
-rwxr-xr-x[-rw-r--r--]Linux/386/bin/mkbin193552 -> 193552 bytes
-rwxr-xr-x[-rw-r--r--]Linux/386/bin/mkextbin83755 -> 83755 bytes
-rw-r--r--Linux/386/include/emu.h6
-rw-r--r--Linux/386/include/lib9.h5
-rw-r--r--Linux/arm/include/lib9.h7
7 files changed, 18 insertions, 0 deletions
diff --git a/Linux/386/bin/data2c b/Linux/386/bin/data2c
index 6d037e9..c4978ed 100644..100755
--- a/Linux/386/bin/data2c
+++ b/Linux/386/bin/data2c
Binary files differ
diff --git a/Linux/386/bin/iyacc b/Linux/386/bin/iyacc
index 31082cf..932c516 100644..100755
--- a/Linux/386/bin/iyacc
+++ b/Linux/386/bin/iyacc
Binary files differ
diff --git a/Linux/386/bin/mk b/Linux/386/bin/mk
index c1f2321..c1f2321 100644..100755
--- a/Linux/386/bin/mk
+++ b/Linux/386/bin/mk
Binary files differ
diff --git a/Linux/386/bin/mkext b/Linux/386/bin/mkext
index 586a1ea..586a1ea 100644..100755
--- a/Linux/386/bin/mkext
+++ b/Linux/386/bin/mkext
Binary files differ
diff --git a/Linux/386/include/emu.h b/Linux/386/include/emu.h
index cdef342..be7381c 100644
--- a/Linux/386/include/emu.h
+++ b/Linux/386/include/emu.h
@@ -7,6 +7,10 @@
/*
* This structure must agree with FPsave and FPrestore asm routines
*/
+
+#ifndef _EMU_H
+#define _EMU_H
+
typedef struct FPU FPU;
struct FPU
{
@@ -31,3 +35,5 @@ extern Proc* getup(void);
typedef sigjmp_buf osjmpbuf;
#define ossetjmp(buf) sigsetjmp(buf, 1)
+
+#endif
diff --git a/Linux/386/include/lib9.h b/Linux/386/include/lib9.h
index 30808d2..263b27d 100644
--- a/Linux/386/include/lib9.h
+++ b/Linux/386/include/lib9.h
@@ -1,3 +1,6 @@
+#ifndef _LIB9_H
+#define _LIB9_H
+
/* define _BSD_SOURCE to use ISO C, POSIX, and 4.3BSD things. */
#define USE_PTHREADS
#ifndef _DEFAULT_SOURCE
@@ -493,3 +496,5 @@ extern void setfcr(ulong);
extern void setfsr(ulong);
extern ulong getfcr(void);
extern ulong getfsr(void);
+
+#endif
diff --git a/Linux/arm/include/lib9.h b/Linux/arm/include/lib9.h
index 91f19c2..7a1f237 100644
--- a/Linux/arm/include/lib9.h
+++ b/Linux/arm/include/lib9.h
@@ -1,3 +1,7 @@
+#ifndef _LIB9_H
+#define _LIB9_H
+
+
/* define _BSD_SOURCE to use ISO C, POSIX, and 4.3BSD things. */
#define USE_PTHREADS
#ifndef _DEFAULT_SOURCE
@@ -502,3 +506,6 @@ extern ulong getfsr(void);
#define FPAUNFL FPUNFL
#define FPAZDIV FPZDIV
#define FPAINVAL FPINVAL
+
+
+#endif