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

#include <wasmux-config.h>
#include <wasmux/byteorder.h>

#include <wasmux/assert.h>

uint32_t htonl(uint32_t host)
{
  WA_UNREACHABLE();
  return 0;
}

uint16_t htons(uint16_t host)
{
  WA_UNREACHABLE();
  return 0;
}

uint32_t ntohl(uint32_t net)
{
  WA_UNREACHABLE();
  return 0;
}

uint16_t ntohs(uint16_t net)
{
  WA_UNREACHABLE();
  return 0;
}
