add new | syntax.

syntax will change.
This commit is contained in:
rsc 2005-01-04 22:41:27 +00:00
parent 02f38ca68c
commit 9aa1c92f74
19 changed files with 281 additions and 83 deletions

22
src/cmd/mk/sys.std.h Normal file
View file

@ -0,0 +1,22 @@
#include <utf.h>
#include <fmt.h>
#include <bio.h>
#include <regexp9.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <ctype.h>
#include <time.h>
#define OREAD O_RDONLY
#define OWRITE O_WRONLY
#define ORDWR O_RDWR
#define nil 0
#define nelem(x) sizeof((x)/sizeof((x)[0]))
#define seek lseek
#define remove unlink
#define exits(x) exit(x && *(char*)x ? 1 : 0)
#define USED(x) if(x){}else
#define create(name, mode, perm) open(name, mode|O_CREAT, perm)
#define ERRMAX 256