// thread
//

#ifndef INCLUDED_PRLGCC_THREAD
#define INCLUDED_PRLGCC_THREAD

#include <bits/prlgcc_c++config.h>

#if defined (__PRL_GLIBCXX__)

#  if (__PRL_GLIBCXX__ == 4) && (__PRL_GLIBCXX_MINOR__ == 4)

#    include <4.4/thread>

#  else

#    include_next <thread>

#  endif

#else

#  include_next <thread>

#endif

#endif
