OSDN Git Service

metag: Add NPTL support
[uclinux-h8/uClibc.git] / libpthread / nptl / sysdeps / unix / sysv / linux / metag / pt-gettimeofday.c
1 /*
2  * Copyright (C) 2013 Imagination Technologies Ltd.
3  *
4  * Licensed under the LGPL v2.1 or later, see the file COPYING.LIB in this tarball.
5  */
6
7 #include <sys/syscall.h>
8 #include <sys/time.h>
9
10 int gettimeofday (struct timeval *, struct timezone *) attribute_hidden;
11 _syscall2(int, gettimeofday, struct timeval *, tv, struct timezone *, tz);