Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/shared/platform/nacl_host_desc.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ typedef struct stat nacl_host_stat_t;
# define NACL_HOST_STAT64 stat
# define NACL_HOST_LSTAT64 lstat
#elif NACL_WINDOWS
typedef struct _stati64 nacl_host_stat_t;
typedef struct _stat64 nacl_host_stat_t;
# define NACL_HOST_FSTAT64 _fstat64
# define NACL_HOST_STAT64 _stati64
# define NACL_HOST_STAT64 _stat64
#elif defined __native_client__
/* nacl_host_stat_t not exposed to NaCl module code */
#else
Expand Down