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

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

int __wrap_link(const char *old_name, const char *new_name)
{
  return _stub(EMLINK);
}