Skip to content

Commit

Permalink
Compile error fix for QNX
Browse files Browse the repository at this point in the history
  • Loading branch information
shinh committed May 14, 2012
1 parent a7e533a commit 6582288
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/logging.cc
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,17 @@ using std::ostream;
using std::ostringstream;
using std::strstream;

using std::FILE;
using std::fwrite;
using std::fclose;
using std::fflush;
using std::fprintf;
using std::perror;

#ifdef __QNX__
using std::fdopen;
#endif

// There is no thread annotation support.
#define EXCLUSIVE_LOCKS_REQUIRED(mu)

Expand Down

0 comments on commit 6582288

Please sign in to comment.