Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup includes #1776

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
#include "main.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>

#include "mod/modvals.h"
Expand Down
2 changes: 0 additions & 2 deletions src/mod/channels.mod/cmdschan.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

#include <ctype.h>

static struct flag_record user = { FR_GLOBAL | FR_CHAN, 0, 0, 0, 0, 0 };
static struct flag_record victim = { FR_GLOBAL | FR_CHAN, 0, 0, 0, 0, 0 };

Expand Down
1 change: 0 additions & 1 deletion src/mod/pbkdf2.mod/tclpbkdf2.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
*/

#include <openssl/err.h>
#include <string.h>

static char *pbkdf2_encrypt(const char *);

Expand Down
3 changes: 0 additions & 3 deletions src/mod/server.mod/isupport.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

#include <ctype.h>
#include <string.h>
#include <strings.h>
#include "src/mod/module.h"
#include "server.h"

Expand Down
1 change: 0 additions & 1 deletion src/mod/server.mod/servmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#undef answer /* before resolv.h because it could collide with src/mod/module.h
* (dietlibc) */
#include <resolv.h> /* base64 encode b64_ntop() and base64 decode b64_pton() */
#include <string.h>
#ifdef TLS
#include <openssl/err.h>
#endif
Expand Down
2 changes: 0 additions & 2 deletions src/mod/server.mod/tclisupport.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

#include <ctype.h>

int tcl_isupport STDOBJVAR;
static int tcl_isupport_get STDOBJVAR;
static int tcl_isupport_isset STDOBJVAR;
Expand Down
1 change: 0 additions & 1 deletion src/net.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
#include "main.h"
#include "modules.h"
#include <limits.h>
#include <string.h>
#include <netdb.h>
#include <sys/socket.h>
#if HAVE_SYS_SELECT_H
Expand Down
1 change: 0 additions & 1 deletion src/tcluser.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

#include "main.h"
#include "modules.h"
#include "string.h"

extern Tcl_Interp *interp;
extern struct userrec *userlist;
Expand Down
Loading