Skip to content

Commit

Permalink
Added back platform <string.h> for TUNConfigurators.
Browse files Browse the repository at this point in the history
  • Loading branch information
Caleb James DeLisle committed Nov 4, 2012
1 parent d916ba6 commit ca2ee13
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion interface/TUNConfigurator_FreeBSD.c
Expand Up @@ -30,7 +30,7 @@
#include <stdlib.h>
#include <stddef.h>
#include <net/if.h>
#include "util/platform/libc/string.h"
#include <string.h>
#include <netdb.h>
#include <net/if_var.h>
#include <net/if_tun.h>
Expand Down
2 changes: 1 addition & 1 deletion interface/TUNConfigurator_Illumos.c
Expand Up @@ -20,7 +20,7 @@
#include <stdio.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include "util/platform/libc/string.h"
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <stdlib.h>
Expand Down
2 changes: 1 addition & 1 deletion interface/TUNConfigurator_OSX.c
Expand Up @@ -26,7 +26,7 @@
#include <stdlib.h>
#include <stddef.h>
#include <net/if.h>
#include "util/platform/libc/string.h"
#include <string.h>
#include <netdb.h>
#include <net/if_var.h>
#include <netinet/in_var.h>
Expand Down
2 changes: 1 addition & 1 deletion interface/TUNConfigurator_OpenBSD.c
Expand Up @@ -30,7 +30,7 @@
#include <stdlib.h>
#include <stddef.h>
#include <net/if.h>
#include "util/platform/libc/string.h"
#include <string.h>
#include <netdb.h>
#include <net/if_tun.h>
#include <netinet/in.h>
Expand Down

0 comments on commit ca2ee13

Please sign in to comment.