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

#include <shadow.h>
#include <stddef.h>
#include <assert.h>

struct spwd* getspent(void)
{
  assert(0);
  return NULL;
}

struct spwd* getspnam(const char* name)
{
  assert(0);
  return NULL;
}
