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