ZealOS/zealbooter/lib.h

14 lines
239 B
C
Raw Normal View History

#ifndef __LIB_H__
#define __LIB_H__
#include <stdint.h>
#include <memcpy.h>
#include <print.h>
2022-08-20 15:13:06 +01:00
uint64_t div_roundup_u64(uint64_t a, uint64_t b);
uint64_t align_up_u64(uint64_t a, uint64_t b);
2022-08-20 15:13:06 +01:00
typedef char symbol[];
#endif // __LIB_H__