Skip to content
This repository has been archived by the owner on Sep 4, 2019. It is now read-only.

Commit

Permalink
change QNX check for va_list
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Van Eerd committed May 27, 2013
1 parent 0ef194d commit f39dd29
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions boost/test/impl/execution_monitor.ipp
Expand Up @@ -53,17 +53,12 @@ namespace std { using ::strerror; using ::strlen; using ::strncat; }
#endif

// to use vsnprintf
#if defined(__SUNPRO_CC) || defined(__SunOS)
#if defined(__SUNPRO_CC) || defined(__SunOS) || defined(__QNXNTO__)
# include <stdio.h>
# include <stdarg.h>
using std::va_list;
#endif

// to use vsnprintf
#if defined(__QNXNTO__)
# include <stdio.h>
#endif

#if defined(_WIN32) && !defined(BOOST_DISABLE_WIN32) && \
(!defined(__COMO__) && !defined(__MWERKS__) && !defined(__GNUC__) || \
BOOST_WORKAROUND(__MWERKS__, >= 0x3000))
Expand Down

0 comments on commit f39dd29

Please sign in to comment.