1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright 2026 The FreeBSD Foundation 5 * 6 * This software were developed by Konstantin Belousov <kib@FreeBSD.org> 7 * under sponsorship from the FreeBSD Foundation. 8 */ 9 10 #include <unistd.h> 11 12 ssize_t freadlink(int fd,char * buf,size_t bufsize)13freadlink(int fd, char *buf, size_t bufsize) 14 { 15 return (readlinkat(fd, "", buf, bufsize)); 16 } 17