#ifndef GUF_INIT_H #define GUF_INIT_H // Set up the global panic handler. #define GUF_INIT #include "guf_assert.h" // static inline bool guf_init(void) // { // static bool guf_is_init = false; // if (guf_is_init) { // printf("libguf already initialised\n"); // return true; // } // guf_is_init = true; // return guf_is_init; // } #endif