Skip to content

Commit

Permalink
Fix some include paths for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Meulengracht committed Apr 28, 2021
1 parent e519e26 commit 9766c5c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions runtime/link/socket/client.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

#include <assert.h>
#include <errno.h>
#include "../include/gracht/link/socket.h"
#include "../include/debug.h"
#include "gracht/link/socket.h"
#include "debug.h"
#include <stdlib.h>
#include <string.h>

Expand Down
8 changes: 4 additions & 4 deletions runtime/link/socket/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@

#include <assert.h>
#include <errno.h>
#include "../include/gracht/link/socket.h"
#include "../include/debug.h"
#include "../include/crc.h"
#include "../include/server_private.h"
#include "gracht/link/socket.h"
#include "debug.h"
#include "crc.h"
#include "server_private.h"
#include <stdlib.h>
#include <string.h>

Expand Down
4 changes: 2 additions & 2 deletions runtime/link/socket/shared.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
* and functionality, refer to the individual things for descriptions
*/

#include "../include/gracht/link/socket.h"
#include "../include/debug.h"
#include "gracht/link/socket.h"
#include "debug.h"

#ifdef _WIN32

Expand Down
2 changes: 1 addition & 1 deletion runtime/link/socket/socket_os.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#define __GRACHT_SOCKET_OS_H__

#if defined(_WIN32)
#include "../../include/utils.h"
#include "utils.h"
#include <io.h>
#define close closesocket

Expand Down

0 comments on commit 9766c5c

Please sign in to comment.