Skip to content

Commit

Permalink
Fix compilation on unsupported platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed Dec 5, 2020
1 parent a24f2c4 commit 02fe99c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dummy.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ SEXP psp__stat_st_rdev(SEXP x) { return ps__dummy("psp__stat_st_rdev"); }
#ifdef PS__POSIX
#ifndef PS__WINDOWS
SEXP psw__realpath(SEXP x) { return ps__dummy("psw__realpath"); }
SEXP psll_dlls(SEXP x) { return ps__dummy("psll_dlls"); }
#endif
#endif

Expand Down Expand Up @@ -103,6 +102,7 @@ SEXP psp__zombie() { return ps__dummy("psp__zombie"); }
SEXP psp__waitpid(SEXP x) { return ps__dummy("psp__waitpid"); }

SEXP psw__realpath(SEXP x) { return ps__dummy("psw__realpath"); }
SEXP psll_dlls(SEXP x) { return ps__dummy("psll_dlls"); }

SEXP ps__inet_ntop(SEXP x, SEXP y) { return ps__dummy("ps__inet_ntop"); }
#endif
Expand Down

0 comments on commit 02fe99c

Please sign in to comment.