4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-23 23:47:22 +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
136 B
C

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