mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-22 19:02:20 +00:00
19 lines
371 B
C
19 lines
371 B
C
/* src/include/port/nextstep.h */
|
|
|
|
#include "libc.h"
|
|
#include <sys/ioctl.h>
|
|
#if defined(__STRICT_ANSI__)
|
|
#define isascii(c) ((unsigned)(c)<=0177)
|
|
#endif
|
|
extern char *strdup(const char *string);
|
|
|
|
#ifndef _POSIX_SOURCE
|
|
typedef unsigned short mode_t;
|
|
typedef int sigset_t;
|
|
|
|
#define SIG_BLOCK 00
|
|
#define SIG_UNBLOCK 01
|
|
#define SIG_SETMASK 02
|
|
#endif
|
|
|
|
#define NO_WAITPID
|