aboutsummaryrefslogtreecommitdiff
path: root/libgloss/syscall.h
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2001-10-31 19:19:08 +0000
committerJeff Johnston <jjohnstn@redhat.com>2001-10-31 19:19:08 +0000
commit75241b15dbe979163b1cc95df6a5c16e30ddde7b (patch)
tree0b3d11e5730816f974785eb6ff133500620cac8f /libgloss/syscall.h
parent747e5773319f36839927dd67005ceab836ede48d (diff)
downloadnewlib-75241b15dbe979163b1cc95df6a5c16e30ddde7b.zip
newlib-75241b15dbe979163b1cc95df6a5c16e30ddde7b.tar.gz
newlib-75241b15dbe979163b1cc95df6a5c16e30ddde7b.tar.bz2
2001-10-31 David Howells <dhowells@redhat.com>
* syscall.h: Added SYS_times, SYS_gettimeofday, SYS_link values. * mn10300/times.c: Renamed "times" to "_times" so that it can be referenced by newlib. * mn10300/cygmon.c: New file. * mn10300/crt0_redboot.S: Ditto. * mn10300/crt0_cygmon.S: Ditto. * mn10300/Makefile.in: Added RedBoot and Cygmon support. * mn10300/configure.in: Changed to allow for future evaluation boards to be added. * mn10300/configure: Regenerated.
Diffstat (limited to 'libgloss/syscall.h')
-rw-r--r--libgloss/syscall.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/libgloss/syscall.h b/libgloss/syscall.h
index da78562..665cfe8 100644
--- a/libgloss/syscall.h
+++ b/libgloss/syscall.h
@@ -38,10 +38,12 @@
#define SYS_argv 13
/* These are extras added for one reason or another. */
-#define SYS_chdir 14
-#define SYS_stat 15
-#define SYS_chmod 16
-#define SYS_utime 17
-#define SYS_time 18
-
+#define SYS_chdir 14
+#define SYS_stat 15
+#define SYS_chmod 16
+#define SYS_utime 17
+#define SYS_time 18
+#define SYS_gettimeofday 19
+#define SYS_times 20
+#define SYS_link 21
#endif