aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/syscalls/sysgettod.c
blob: e050d35e2475f342bd67c6eccc8d8cd845638676 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* connector for gettimeofday */

#include <reent.h>
#include <sys/types.h>
#include <sys/time.h>

int
gettimeofday (struct timeval *ptimeval,
     void *ptimezone)
{
  return _gettimeofday_r (_REENT, ptimeval, ptimezone);
}