Skip to content
This repository has been archived by the owner on Apr 8, 2023. It is now read-only.

Commit

Permalink
Factored out OPEN_FD for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
bwlewis committed Feb 28, 2014
1 parent 2129ef1 commit fcd3cd2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libsock.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ SEXP OPEN_FD()
{
#ifdef WIN32
return R_NilValue;
#endif
#else
SEXP ans;
struct stat s;
int j, k, l = 0;
Expand All @@ -52,6 +52,7 @@ SEXP OPEN_FD()
}
UNPROTECT (1);
return ans;
#endif
}


Expand Down

0 comments on commit fcd3cd2

Please sign in to comment.