Commit 0572ad6d authored by Yang Tse's avatar Yang Tse
Browse files

curl tool: symbol check adjustment

parent aa7d5b94
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -37,11 +37,13 @@

void set_binmode(FILE *stream)
{
#ifdef O_BINARY
#  ifdef __HIGHC__
  _setmode(stream, O_BINARY);
#  else
  setmode(fileno(stream), O_BINARY);
#  endif
#endif
}

#endif /* HAVE_SETMODE */