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

#include <utmpx.h>
#include <assert.h>

struct utmpx* getutxent(void)
{
  assert(0);
  return NULL;
}

void setutxent(void)
{
  assert(0);
}

void endutxent(void)
{
  assert(0);
}
