Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
conf
pathconf.c
pretty
plain
permalink
blame
history
•
6 lines
•
96 B
1
#include <unistd.h>
2
3
long pathconf(const char *path, int name)
4
{
5
	return fpathconf(-1, name);
6
}