Files

15 lines
271 B
C
Raw Permalink Normal View History

#pragma once
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
#define _noreturn _Noreturn
2018-10-01 20:51:57 -04:00
#define static_assert _Static_assert
#ifdef __GNUC__
#define _unused __attribute__((unused))
#define _packed __attribute__((packed))
#endif
#define off_t int64_t