ZestCode
 
Loading...
Searching...
No Matches
hot.h
1#pragma once
2
3struct hot_table {
4 char const* compile_timestamp;
5 char const* compile_directory;
6
7 void* __exidx_start;
8 void* __exidx_end;
9
10 struct {
11#define FUNC(F) void (*F)();
12#include "system/user_functions/list.h"
13#undef FUNC
14 } functions;
15};
16
17extern struct hot_table* const HOT_TABLE;
Definition hot.h:3