mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
27 lines
553 B
C
27 lines
553 B
C
/* ==== 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_
|
|
#ifndef __WAIT_STATUS
|
|
#define __WAIT_STATUS int *
|
|
#endif
|
|
|
|
#define _PTHREAD_POSIX_H_
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
/* Make sure we have size_t defined */
|
|
#include <pthread/types.h>
|
|
|
|
extern long strtol();
|
|
extern unsigned long strtoul();
|
|
|
|
#endif
|