Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libgloss/m32r/kill.c')
-rw-r--r--libgloss/m32r/kill.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/libgloss/m32r/kill.c b/libgloss/m32r/kill.c
new file mode 100644
index 000000000..d7aaee9ab
--- /dev/null
+++ b/libgloss/m32r/kill.c
@@ -0,0 +1,9 @@
+#include <sys/types.h>
+#include <sys/stat.h>
+#include "syscall.h"
+#include "eit.h"
+
+_kill (n, m)
+{
+ return TRAP0 (SYS_exit, 0xdead, 0, 0);
+}