URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems/] [c/] [src/] [lib/] [libc/] [__getpid.c] - Rev 1781
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. * * $Id: __getpid.c,v 1.2 2001-09-27 12:01:15 chris Exp $ */ #include <unistd.h> pid_t __getpid(void) { return getpid(); }
Go to most recent revision | Compare with Previous | Blame | View Log