summaryrefslogtreecommitdiff
path: root/bsp/libwrap/sys/openat.c
blob: 7f1c94527ee15a5f1dd0615e66aee60023ba068d (plain)
1
2
3
4
5
6
7
8
9
/* See LICENSE of license details. */

#include <errno.h>
#include "stub.h"

int __wrap_openat(int dirfd, const char* name, int flags, int mode)
{
  return _stub(ENOENT);
}