OSDN Git Service

Last portion of libc_hidden_proto removal.
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / common / getsid.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * getsid() for uClibc
4  *
5  * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
6  *
7  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
8  */
9
10 #include <sys/syscall.h>
11 #include <unistd.h>
12
13 #ifdef __USE_XOPEN_EXTENDED
14 /* libc_hidden_proto(getsid) */
15
16 #define __NR___syscall_getsid __NR_getsid
17 static __inline__ _syscall1(__kernel_pid_t, __syscall_getsid, __kernel_pid_t, pid)
18
19 pid_t getsid(pid_t pid)
20 {
21         return (__syscall_getsid(pid));
22 }
23 libc_hidden_def(getsid)
24 #endif