Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sysgettod.c « syscalls « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}