Retro68/gcc/newlib/libc/sys/a29khif/getpid.c

13 lines
170 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
/* Stub for getpid. */
#include <_ansi.h>
/* This should really return pid_t, but that doesn't seem to be in
<sys/types.h>. */
int
2018-12-28 15:30:48 +00:00
_getpid (void)
2017-04-11 21:13:36 +00:00
{
return 1;
}