plan9port/src/libbio/lib9.std.h

21 lines
302 B
C
Raw Normal View History

2004-12-27 00:11:46 +00:00
#include <utf.h>
2003-09-30 17:47:41 +00:00
#include <fmt.h>
2004-12-27 00:11:46 +00:00
2003-09-30 17:47:41 +00:00
#include <fcntl.h>
2004-12-27 00:11:46 +00:00
#include <string.h>
#include <unistd.h>
2003-09-30 17:47:41 +00:00
#include <stdlib.h>
2004-12-27 00:11:46 +00:00
#define OREAD O_RDONLY
#define OWRITE O_WRONLY
2003-09-30 17:47:41 +00:00
2004-12-28 19:25:16 +00:00
#define OCEXEC 0
#define ORCLOSE 0
#define OTRUNC 0
2003-09-30 17:47:41 +00:00
#define nil ((void*)0)
2004-12-27 00:11:46 +00:00
typedef long long vlong;
typedef unsigned long long uvlong;