Skip to content

Commit

Permalink
Merge pull request #71 from retropc/fix_strdups
Browse files Browse the repository at this point in the history
fix assorted undefined functions on newer OS
  • Loading branch information
retropc committed May 29, 2018
2 parents 8ac5b50 + e7e7312 commit d5fe820
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions a4stats/a4stats_db.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#define _GNU_SOURCE
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include "../lib/version.h"
#include "../dbapi2/dbapi2.h"
#include "../core/error.h"
Expand Down
1 change: 1 addition & 0 deletions proxyscan/proxyscanconnect.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include "proxyscan.h"
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
Expand Down
1 change: 1 addition & 0 deletions splitlist/splitlist_commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include <errno.h>
#include <string.h>
#include <strings.h>

#include "../lib/irc_string.h"
#include "../irc/irc.h"
Expand Down

0 comments on commit d5fe820

Please sign in to comment.