From 36087e1869145e15424c1557f92353a5ad1c18ee Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sat, 9 Dec 2023 13:16:28 +0100 Subject: Fixed conflicting declarations --- FICS/stdinclude.h | 2 +- FICS/utils.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FICS/stdinclude.h b/FICS/stdinclude.h index 295774e..7359767 100644 --- a/FICS/stdinclude.h +++ b/FICS/stdinclude.h @@ -131,7 +131,7 @@ extern int printf(char *, ...); #ifndef NETBSD -extern char *crypt (char *key, char *salt); +//extern char *crypt (char *key, char *salt); #endif extern time_t time(time_t *); diff --git a/FICS/utils.c b/FICS/utils.c index 3cf08c0..125a22e 100644 --- a/FICS/utils.c +++ b/FICS/utils.c @@ -43,7 +43,7 @@ #if defined(SGI) #else -int gettimeofday(struct timeval * tp, struct timezone * tzp); +//int gettimeofday(struct timeval * tp, struct timezone * tzp); #endif PUBLIC int count_lines(FILE *fp) -- cgit v1.2.3