mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-22 23:17:28 +08:00
7a45daad91
Very similar to other patches in this space. Avoid implicit int types and add missing #includes so that this code works with gcc-14.
12 lines
120 B
C
12 lines
120 B
C
#include <_ansi.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include "trap.h"
|
|
|
|
|
|
int
|
|
_getpid (int n)
|
|
{
|
|
return 1;
|
|
}
|