source: rtems/cpukit/libcsupport/src/__getpid.c @ a29d2e7

4.104.114.84.95
Last change on this file since a29d2e7 was 3239698, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/15/04 at 13:26:21

Remove stray white spaces.

  • Property mode set to 100644
File size: 226 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#if HAVE_CONFIG_H
9#include "config.h"
10#endif
11
12#include <unistd.h>
13
14pid_t __getpid(void)
15{
16  return getpid();
17}
Note: See TracBrowser for help on using the repository browser.