Retro68/gcc/newlib/libc/sys/a29khif/getpid.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

13 lines
170 B
C

/* Stub for getpid. */
#include <_ansi.h>
/* This should really return pid_t, but that doesn't seem to be in
<sys/types.h>. */
int
_getpid (void)
{
return 1;
}