summaryrefslogtreecommitdiff
path: root/mit-pthreads/machdep/posix-irix-5.2.h
blob: d387bbbbf69dcded726155e7d62aaa81762abb2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* ==== posix.h ============================================================
 * Copyright (c) 1995 by Chris Provenzano, proven@athena.mit.edu	
 *
 * Description : Convert an IRIX-5.2 system to a more or less POSIX system.
 *
 * $Id$
 *
 *  1.00 95/06/01 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 __WAIT_STATUS
#define __WAIT_STATUS	int *
#endif

#endif