summaryrefslogtreecommitdiff
path: root/libc/unistd
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-20 18:50:22 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-20 18:50:22 +0000
commit40b7b3f2b49559e715ddb34516bd785eb1394cda (patch)
tree6ee5503437aa2f907654ec95b422a41d60c62215 /libc/unistd
parent4a536a21ad04493e5ab18d2dfb5988e0576abbdd (diff)
Stub out fpathconf() -- FIXME
-Erik
Diffstat (limited to 'libc/unistd')
-rw-r--r--libc/unistd/fpathconf.c30
1 files changed, 30 insertions, 0 deletions
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 * <andersen@lineo.com>, <andersee@debian.org>
+ *
+ * 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 <unistd.h>
+
+long fpathconf(int filedes, int name)
+{
+ return -1;
+}
+