18 lines
320 B
C
Executable File
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
|