File: sys.std.h

package info (click to toggle)
9base 1%3A6-15
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,536 kB
  • sloc: ansic: 61,060; yacc: 1,991; asm: 1,621; cs: 1,150; perl: 965; makefile: 616; sh: 18; sed: 4
file content (27 lines) | stat: -rw-r--r-- 614 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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>
#include <stdint.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

typedef uintptr_t uintptr;
#define uchar mk_uchar
typedef unsigned char uchar;