aoc-2025/libguf/src/guf_init.h
2025-12-02 22:46:16 +01:00

18 lines
320 B
C
Executable File

/*
is parametrized: no, but must to be implemented once (libguf always requires implementing guf_assert and guf_hash)
*/
#ifndef GUF_INIT_H
#define GUF_INIT_H
#include "guf_common.h"
// Set up the global panic handler.
#define GUF_INIT
#include "guf_assert.h"
#define GUF_HASH_IMPL
#include "guf_hash.h"
#endif