/*
 *
 *  Copyright (C) 2025  Yurii Yakubin (yurii.yakubin@gmail.com)
 *
 */

#include <wasmux-config.h>
#include <err.h>
#include <assert.h>

void warn(const char* fmt, ...)
{
  assert(0);
}

void warnx(const char* fmt, ...)
{
  assert(0);
}

void err(int status, const char* fmt, ...)
{
  assert(0);
}

void errx(int status, const char* fmt, ...)
{
  assert(0);
}
