diff options
author | Sadie Powell <sadie@witchery.services> | 2022-01-03 23:32:53 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-01-04 00:39:05 +0000 |
commit | c6c9d9591cc528bc2ca70747dcb3cc248cb4269b (patch) | |
tree | 2d4abbe9fca96c53ce453ccd7c4add7cb2faecf2 /src | |
parent | c1f6a79c72c29f92ba053942d25d351623f57551 (diff) |
Remove some obsolete header and function checks.
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/anopesmtp.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/tools/anopesmtp.cpp b/src/tools/anopesmtp.cpp index d86f9c43f..f97af49ad 100644 --- a/src/tools/anopesmtp.cpp +++ b/src/tools/anopesmtp.cpp @@ -12,14 +12,6 @@ * *nix port by Trystan Scott Lee <trystan@nomadirc.net> */ -#include "sysconf.h" - -/* Some Linux boxes (or maybe glibc includes) require this for the - * prototype of strsignal(). */ -#ifndef _GNU_SOURCE -# define _GNU_SOURCE -#endif - #include <string> #include <vector> #include <cstdarg> @@ -46,15 +38,6 @@ #include <sys/types.h> -#ifdef _AIX -extern int strcasecmp(const char *, const char *); -extern int strncasecmp(const char *, const char *, size_t); -# if 0 /* These break on some AIX boxes (4.3.1 reported). */ -extern int socket(int, int, int); -extern int connect(int, struct sockaddr *, int); -# endif -#endif /* _AIX */ - /* Some SUN fixs */ #ifdef __sun /* Solaris specific code, types that do not exist in Solaris' |