14 lines
207 B
C
14 lines
207 B
C
#pragma once
|
|
#include <stdint.h>
|
|
|
|
#ifndef NULL
|
|
#define NULL ((void *) 0)
|
|
#endif
|
|
|
|
typedef uintptr_t size_t;
|
|
typedef intptr_t ssize_t;
|
|
|
|
typedef uint32_t mode_t;
|
|
typedef uint32_t uid_t;
|
|
typedef uint32_t gid_t;
|