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

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

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