Commit 39031d9b authored by Nils Goroll's avatar Nils Goroll

add a noop VSLb_ts to the fuzzer

suncc implements the inline functions from cache.h using it
parent 88b2eb8e
......@@ -55,6 +55,7 @@ VSLb(struct vsl_log *vsl, enum VSL_tag_e tag, const char *fmt, ...)
(void)fmt;
}
void *
WS_Alloc(struct ws *ws, unsigned bytes)
{
......@@ -62,6 +63,17 @@ WS_Alloc(struct ws *ws, unsigned bytes)
return (calloc(1, bytes));
}
void
VSLb_ts(struct vsl_log *l, const char *event, double first, double *pprev,
double now)
{
(void)l;
(void)event;
(void)first;
(void)pprev;
(void)now;
}
int
LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment