From 40b7b3f2b49559e715ddb34516bd785eb1394cda Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 20 Apr 2001 18:50:22 +0000 Subject: Stub out fpathconf() -- FIXME -Erik --- libc/unistd/fpathconf.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 libc/unistd/fpathconf.c (limited to 'libc') diff --git a/libc/unistd/fpathconf.c b/libc/unistd/fpathconf.c new file mode 100644 index 000000000..140b94fdb --- /dev/null +++ b/libc/unistd/fpathconf.c @@ -0,0 +1,30 @@ +/* vi: set sw=4 ts=4: */ +/* + * fpathconf for uClibc + * + * Copyright (C) 2001 by Lineo, inc. Written by + * Erik Andersen * , + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License as published by + * the Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License + * for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + +#include + +long fpathconf(int filedes, int name) +{ + return -1; +} + -- cgit v1.2.3