From 973ae30e7c4f7a1afb385dd3d8eeea178f981445 Mon Sep 17 00:00:00 2001 From: Jannis Hoffmann Date: Mon, 8 Jul 2024 13:24:39 +0200 Subject: fix deprecated prototypes --- src/tls_start.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/tls_start.c') diff --git a/src/tls_start.c b/src/tls_start.c index 434591f..72f012b 100644 --- a/src/tls_start.c +++ b/src/tls_start.c @@ -1,9 +1,10 @@ +#include "tls_start.h" + #include #include "env.h" #include "fd.h" #include "logmsg.h" -#include "open.h" #include "scan.h" #include "stralloc.h" @@ -21,7 +22,7 @@ static void die_tlsenv() logmsg(WHO, 111, FATAL, "no UCSPITLS environment to read"); } -int starttls_init(void) +int starttls_init() { unsigned long fd; char *fdstr; @@ -41,7 +42,7 @@ int starttls_init(void) return 1; } -int starttls_info(void) +int starttls_info() { unsigned long fd; char *fdstr; -- cgit v1.2.3