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

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

int wordexp(const char* words, wordexp_t* wordexp, int flags)
{
  assert(0);
  return -1;
}

void wordfree(wordexp_t* wordexp)
{
  assert(0);
}
