URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [libcsupport/] [src/] [__getpid.c] - Rev 1771
Go to most recent revision | Compare with Previous | Blame | View Log
/* * Some C Libraries reference this routine since they think getpid is * a real system call. * * __getpid.c,v 1.2 2001/01/08 18:26:44 joel Exp */ #if HAVE_CONFIG_H #include "config.h" #endif #include <unistd.h> pid_t __getpid(void) { return getpid(); }
Go to most recent revision | Compare with Previous | Blame | View Log