mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 03:50:17 +00:00
13 lines
170 B
C
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;
|
|
}
|