Add support for using time64 on big-endian machines.
[uclibc-ng.git] / libc / sysdeps / linux / common / kill.c
blobeb9c91b3fc630494159a321174cfd6f5757f63e4
1 /*
2 * kill() for uClibc
4 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
6 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
7 */
9 #include <sys/syscall.h>
10 #include <signal.h>
13 #define __NR___syscall_kill __NR_kill
14 static __inline__ _syscall2(int, __syscall_kill, __kernel_pid_t, pid, int, sig)
16 int kill(pid_t pid, int sig)
18 return (__syscall_kill(pid, sig));
20 libc_hidden_def(kill)