URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libc/] [__getpid.c] - Rev 173
Compare with Previous | Blame | View Log
/* * Some C Libraries reference this routine since they think getpid is * a real system call. * * $Id: __getpid.c,v 1.2 2001-09-27 12:01:15 chris Exp $ */ #include <unistd.h> pid_t __getpid(void) { return getpid(); }