rpi has a time() function; don't try to call gettimeofday().

This commit is contained in:
David Given 2016-08-20 14:03:19 +02:00
parent f561b94b49
commit 52eaf753b6

View file

@ -8,4 +8,9 @@
#ifndef _ACK_CONFIG_H
#define _ACK_CONFIG_H
/* We're providing a time() system call rather than wanting a wrapper around
* gettimeofday() in the libc. */
#define ACKCONF_TIME_IS_A_SYSCALL
#endif