Files
rtems/cpukit/libcsupport/src/__getpid.c
Joel Sherrill 9c49db4d6a 2001-01-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.in: Add libc/config.h
	* libc/Makefile.am: Add INCLUDES += -I. to pickup config.h
	* libc/.cvsignore: Add config.h and stamp-h
	* libc/*.c: Add config.h support.
2001-01-08 18:26:44 +00:00

19 lines
227 B
C

/*
* Some C Libraries reference this routine since they think getpid is
* a real system call.
*
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <unistd.h>
pid_t __getpid(void)
{
return getpid();
}