diff options
Diffstat (limited to 'mit-pthreads/machdep/posix-i386-sco-3.2v5.h')
-rw-r--r-- | mit-pthreads/machdep/posix-i386-sco-3.2v5.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/mit-pthreads/machdep/posix-i386-sco-3.2v5.h b/mit-pthreads/machdep/posix-i386-sco-3.2v5.h new file mode 100644 index 00000000000..ab91311612d --- /dev/null +++ b/mit-pthreads/machdep/posix-i386-sco-3.2v5.h @@ -0,0 +1,35 @@ +/* ==== posix.h ============================================================ + * Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu + * + * Description : Convert an Ultrix-4.2 system to a more or less POSIX system. + * + * posix-freebsd-2.0.h,v 1.1 1995/03/01 01:21:30 proven Exp + * + * 1.00 93/07/20 proven + * -Started coding this file. + */ + +#ifndef _PTHREAD_POSIX_H_ +#define _PTHREAD_POSIX_H_ + +#include <sys/cdefs.h> + +/* More stuff for compiling */ +#if defined(__GNUC__) +#define __INLINE extern inline +#else +#define __INLINE static +#endif + +/* Make sure we have size_t defined */ +#include <pthread/types.h> + +#ifndef __NORETURN +#define __NORETURN +#endif + +#ifndef __WAIT_STATUS +#define __WAIT_STATUS int * +#endif + +#endif |