l4re-base-25.08.0

This commit is contained in:
2025-09-12 15:55:45 +02:00
commit d959eaab98
37938 changed files with 9382688 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/*
* Copyright (C) 2009 TU Dresden.
* Author(s): Adam Lackorzynski <adam@l4re.org>
*
* License: see LICENSE.spdx (in this directory or the directories above)
*/
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
long fpathconf(int fd, int name)
{
printf("Unimplemented: %s(%d, %d)\n", __func__, fd, name);
errno = EINVAL;
return -1;
}
long pathconf(const char *path, int name)
{
printf("Unimplemented: %s(%s, %d)\n", __func__, path, name);
errno = EINVAL;
return -1;
}