blob: 9fb765d60c3a791d45876fb02cd99f11073e516b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* ==== posix.h ============================================================
* Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
*
* $Id$
*
* Description : Do the right thing for a sunos 4.1.3 system.
*
* 1.00 93/07/20 proven
* -Started coding this file.
*/
#ifndef _PTHREAD_POSIX_H_
#define _PTHREAD_POSIX_H_
/* Make sure we have size_t defined */
#include <pthread/types.h>
#ifndef __WAIT_STATUS
#define __WAIT_STATUS int *
#endif
#endif
|