1
1
mirror of https://github.com/rui314/mold.git synced 2024-12-26 18:02:30 +03:00

temporary

This commit is contained in:
Rui Ueyama 2020-11-05 08:36:10 +09:00
parent 3c757b8b4c
commit 1461ba358f

3
mold.h
View File

@ -24,6 +24,9 @@
#define SECTOR_SIZE 512
#define PAGE_SIZE 4096
#define LIKELY(x) __builtin_expect((x), 1)
#define UNLIKELY(x) __builtin_expect((x), 0)
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;