sotn-decomp/include/common.h
2023-03-12 00:11:14 +00:00

18 lines
270 B
C

#ifndef COMMON_H
#define COMMON_H
#include "include_asm.h"
#include "macros.h"
#include "types.h"
#define LOH(x) (*(s16*)&(x))
#ifdef HACKS
#define ALIGNED4 __attribute__(aligned(4))
#else
#define ALIGNED4
#endif
int sprintf(char* dst, const char* fmt, ...);
#endif