Skip to content

Commit

Permalink
Merge pull request #4019 from bentley/posix-includes
Browse files Browse the repository at this point in the history
POSIX includes portability
  • Loading branch information
Parlane committed Jul 17, 2016
2 parents 0b19975 + f4cc528 commit b9246cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_net.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
#include <cstdio>
#include <cstdlib>
#include <string>
#ifndef _WIN32
#include <arpa/inet.h>
#include <netdb.h>
#include <poll.h>
#endif

#include "Common/CommonPaths.h"
#include "Common/FileUtil.h"
Expand Down
1 change: 1 addition & 0 deletions Source/Core/Core/IPC_HLE/WII_Socket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#include <algorithm>
#ifndef _WIN32
#include <arpa/inet.h>
#include <unistd.h>
#endif

Expand Down

0 comments on commit b9246cf

Please sign in to comment.