diff options
Diffstat (limited to 'threadlib/threadlib.h')
| -rw-r--r-- | threadlib/threadlib.h | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/threadlib/threadlib.h b/threadlib/threadlib.h new file mode 100644 index 0000000..697ba18 --- /dev/null +++ b/threadlib/threadlib.h @@ -0,0 +1,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 | 
