Add support for using time64 on big-endian machines.
[uclibc-ng.git] / libc / sysdeps / linux / common / linkat.c
blob26a3d08e0c1db6f7f5110040e85f3132e60596cd
1 /*
2 * linkat() for uClibc
4 * Copyright (C) 2009 Analog Devices Inc.
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_linkat
13 _syscall5(int, linkat, int, fromfd, const char *, from, int, tofd, const char *, to, int, flags)
14 libc_hidden_def(linkat)
15 #else
16 /* should add emulation with link() and /proc/self/fd/ ... */
17 #endif