11 lines
264 B
C
11 lines
264 B
C
|
|
#include <stdint.h>
|
||
|
|
#include "hakx_front_tiny.h"
|
||
|
|
|
||
|
|
// Tiny front handles ≤ 128 bytes by default.
|
||
|
|
__attribute__((constructor))
|
||
|
|
static void hakx_bootstrap(void) {
|
||
|
|
hak_init();
|
||
|
|
}
|
||
|
|
|
||
|
|
// Inlines are defined in the header; this TU only provides constructor bootstrap.
|