4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-23 07:27:21 +08:00
Jeff Law 5e79655f38 Fix most of m32r libgloss for c99/gcc-14
Make implicit its explicit, add missing prototypes and header includes.  This
does not fix m32r-stub.c which needs more than the trivial work that Jeff J has
pre-approved.
2023-12-22 21:21:52 -07:00

11 lines
154 B
C

#include <sys/types.h>
#include <sys/stat.h>
#include "syscall.h"
#include "eit.h"
int
_kill (int n, int m)
{
return TRAP0 (SYS_exit, 0xdead, 0, 0);
}