add HP-UX workaround

[SVN r10051]
This commit is contained in:
Jens Maurer
2001-05-07 21:21:13 +00:00
parent 949134726f
commit 2dd1bee693

View File

@ -26,7 +26,13 @@
#ifdef BOOST_SYSTEM_HAS_STDINT_H #ifdef BOOST_SYSTEM_HAS_STDINT_H
# include <stdint.h> // implementation artifact; not part of interface // The following #include is an implementation artifact; not part of interface.
# ifdef __hpux
// HP-UX has a nice <stdint.h> in a non-standard location
# include <sys/_inttypes.h>
# else
# include <stdint.h>
# endif
namespace boost namespace boost
{ {