aboutsummaryrefslogtreecommitdiffstats
path: root/FICS
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-09 13:16:28 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-09 13:16:32 +0100
commit36087e1869145e15424c1557f92353a5ad1c18ee (patch)
treee05bad4b72f08ad9bf2ee80294678e0ec8529296 /FICS
parent3d6927d8796096b1c808a6ef06912bdf7fe7da04 (diff)
Fixed conflicting declarations
Diffstat (limited to 'FICS')
-rw-r--r--FICS/stdinclude.h2
-rw-r--r--FICS/utils.c2
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)