ref: 3cc6c38f1347e3a9d61f27d28dbafad7fe4cae7b
dir: /include/u.h/
#pragma once
#define nil ((void*)0x0)
typedef int size_t;
typedef unsigned char uint8; 
typedef char int8;
typedef unsigned short uint16;
typedef short int16;
typedef unsigned long uint32;
typedef long int32;
typedef struct
{
	void *val;
	void *next;
}ll_t;