1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#ifndef threadlib_h #define threadlib_h /* ** Copyright 2000 Double Precision, Inc. See COPYING for ** distribution information. */ #include "config.h" struct cthreadinfo; struct cthreadlock; #if HAVE_PTHREADS #include "havepthread.h" #else #include "nopthread.h" #endif #endif