aboutsummaryrefslogtreecommitdiff
path: root/sim/sh/interp.c
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1995-06-29 17:15:30 +0000
committerFred Fish <fnf@specifix.com>1995-06-29 17:15:30 +0000
commit7427b968f39c875fdf3291610977fdebf1a7736d (patch)
tree28aedb9e1f4b38d93e6ddeb56e05213e594b54c4 /sim/sh/interp.c
parent8c7fd353f92fa7fdc3ad6ee31aa7639868e5ba23 (diff)
downloadbinutils-7427b968f39c875fdf3291610977fdebf1a7736d.zip
binutils-7427b968f39c875fdf3291610977fdebf1a7736d.tar.gz
binutils-7427b968f39c875fdf3291610977fdebf1a7736d.tar.bz2
* interp.c: (SYS_wait): Define as SYS_wait4 if available and
SYS_wait is not already defined (SunOS 4.1.3 for example). (SYS_utime): Define as SYS_utimes if available and SYS_utime is not already defined.
Diffstat (limited to 'sim/sh/interp.c')
-rw-r--r--sim/sh/interp.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sim/sh/interp.c b/sim/sh/interp.c
index d35eab8..f1fa22c 100644
--- a/sim/sh/interp.c
+++ b/sim/sh/interp.c
@@ -24,6 +24,14 @@
#include "remote-sim.h"
#include <sys/syscall.h>
+#if !defined (SYS_wait) && defined (SYS_wait4)
+#define SYS_wait SYS_wait4 /* SunOS 4.1.3 for example */
+#endif
+
+#if !defined (SYS_utime) && defined (SYS_utimes)
+#define SYS_utime SYS_utimes /* SunOS 4.1.3 for example */
+#endif
+
#ifndef SIGBUS
#define SIGBUS SIGSEGV
#endif