apfl/src/stubs_for_apflc.c

17 lines
341 B
C
Raw Permalink Normal View History

#include <assert.h>
#include <stdbool.h>
#include "apfl.h"
#include "globals.h"
#define MODULE_STUB(name) \
void \
name(apfl_ctx ctx) \
{ \
(void)ctx; \
apfl_dict_create(ctx); \
}
MODULE_STUB(apfl_globals)
MODULE_STUB(apfl_module_re)