Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getpid.c « a29khif « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 99d88bd39f4dd6fa74eea3da6bf37123e76dffa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Stub for getpid.  */

#include <_ansi.h>

/* This should really return pid_t, but that doesn't seem to be in
   <sys/types.h>.  */

int
_DEFUN_VOID (_getpid)
{
  return 1;
}