xref: /freebsd/lib/libc/gen/freadlink.c (revision a2e0822543e93a8d815acd2d1c3d51ef73d6e262)
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)13 freadlink(int fd, char *buf, size_t bufsize)
14 {
15 	return (readlinkat(fd, "", buf, bufsize));
16 }
17