mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-23 07:27:21 +08:00
5e79655f38
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.
11 lines
154 B
C
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);
|
|
}
|