Add support for using time64 on big-endian machines.
[uclibc-ng.git] / libc / sysdeps / linux / common / getppid.c
blob148053dd3bd44fdbd53e107e2f29eda0ddb674dc
1 /*
2 * getppid() for uClibc
4 * Copyright (C) 2000-2006 by Erik Andersen <andersen@codepoet.org>
6 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
7 */
9 #include <sys/syscall.h>
10 #include <unistd.h>
12 #ifdef __NR_getppid
13 _syscall_noerr0(pid_t, getppid)
14 #endif