source: rtems/c/src/lib/libc/__getpid.c @ 0dd1d44

4.104.114.84.95
Last change on this file since 0dd1d44 was 7edb9281, checked in by Joel Sherrill <joel.sherrill@…>, on 11/05/99 at 19:02:03

Following comments from Eric Norum <eric@…>, a fairly
substantial upgrade of newlibc.c occurred. Now the user extension
data area is used rather than notepads and as many routines as possible
were split into other files further reducing the minimum footprint
of an RTEMS executable.

  • Property mode set to 100644
File size: 181 bytes
Line 
1/*
2 *  Some C Libraries reference this routine since they think getpid is
3 *  a real system call.
4 *
5 *  $Id$
6 */
7
8#include <unistd.h>
9
10pid_t __getpid(void)
11{
12  return getpid();
13}
14
Note: See TracBrowser for help on using the repository browser.