From ebcbcc64d81397f74faf40abf08c23c16d62d5cb Mon Sep 17 00:00:00 2001 From: frekky Date: Sun, 13 Mar 2016 13:10:54 +0800 Subject: [PATCH] Remove difftime declaration from common.h This was added to fix strange issues where difftime was declared implicitly (even with time.h included) --- src/common.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/common.h b/src/common.h index e360145..a8a19ad 100644 --- a/src/common.h +++ b/src/common.h @@ -144,8 +144,6 @@ void read_password(char*, size_t); int check_topdomain(char *, char **); -extern double difftime(time_t, time_t); - #if defined(WINDOWS32) || defined(ANDROID) #ifndef ANDROID int inet_aton(const char *cp, struct in_addr *inp);