pt-gettimeofday.c 343 B

1234567891011
  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. #include <sys/syscall.h>
  7. #include <sys/time.h>
  8. int gettimeofday (struct timeval *, struct timezone *) attribute_hidden;
  9. _syscall2(int, gettimeofday, struct timeval *, tv, struct timezone *, tz);