blob: d9fc3531fe128ead2510843f0153242c472d87e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* Copyright (C) 2013 Synopsys, Inc. (www.synopsys.com)
*
* Licensed under the LGPL v2.1 or later, see the file COPYING.LIB in this tarball.
*/
#include <sys/syscall.h>
#include <sys/time.h>
int gettimeofday (struct timeval *, struct timezone *) attribute_hidden;
_syscall2(int, gettimeofday, struct timeval *, tv, struct timezone *, tz);
|