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

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

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