OSDN Git Service

2007-06-20 Patrick Mansfield <patmans@us.ibm.com>
[pf3gnuchains/pf3gnuchains3x.git] / libgloss / libnosys / getpid.c
1 /*
2  * Stub version of getpid.
3  */
4
5 #include "config.h"
6 #include <_ansi.h>
7 #include <_syslist.h>
8 #include <errno.h>
9 #undef errno
10 extern int errno;
11 #include "warning.h"
12
13 int
14 _DEFUN (_getpid, (),
15         _NOARGS)
16 {
17   errno = ENOSYS;
18   return -1;
19 }
20
21 stub_warning(_getpid)