source: trunk/libs/newlib/src/newlib/libc/syscalls/sysgetpid.c

Last change on this file was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 119 bytes
Line 
1/* connector for getpid */
2
3#include <reent.h>
4#include <unistd.h>
5
6int
7getpid (void)
8{
9  return _getpid_r (_REENT);
10}
Note: See TracBrowser for help on using the repository browser.