summaryrefslogtreecommitdiff
path: root/userland/libc/sys/time/gettimeofday.c
blob: 3487254a6e4a163f5dfe87bdb53b249b1aec75df (plain)
1
2
3
4
5
6
7
#include <sys/time.h>
#include <time.h>

static int return_tod = 0;
int gettimeofday(struct timeval *tp, void *tzp) {
  return return_tod++;
}