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

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

int fnmatch(const char* pattern, const char* str, int flags)
{
  assert(0);
  return -1;
}
