Projet_SETI_RISC-V/riscv-gnu-toolchain/newlib/libgloss/libnosys/getpid.c

21 lines
245 B
C
Raw Normal View History

2023-03-06 14:48:14 +01:00
/*
* Stub version of getpid.
*/
#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>
#undef errno
extern int errno;
#include "warning.h"
int
_getpid (void)
{
errno = ENOSYS;
return -1;
}
stub_warning(_getpid)