blob: a3ae0e994d4aa591877fd4fc4fbb22c0a7211b38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <utf.h>
#include <fmt.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#define OREAD O_RDONLY
#define OWRITE O_WRONLY
#define nil ((void*)0)
typedef long long vlong;
typedef unsigned long long uvlong;
|