summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/lstat.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-22 21:13:23 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-22 21:13:23 +0000
commit933388ae2d3f1c2d4939e701ea9cd1290c851886 (patch)
treeaf4a76d9a0987674ca0c9a0f5ba7ae2b89551895 /c/src/lib/libc/lstat.c
parentAdded some CPU models that did not have BSPs. (diff)
downloadrtems-933388ae2d3f1c2d4939e701ea9cd1290c851886.tar.bz2
Added lstat().
Diffstat (limited to 'c/src/lib/libc/lstat.c')
-rw-r--r--c/src/lib/libc/lstat.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/c/src/lib/libc/lstat.c b/c/src/lib/libc/lstat.c
new file mode 100644
index 0000000000..2c1746ac6e
--- /dev/null
+++ b/c/src/lib/libc/lstat.c
@@ -0,0 +1,19 @@
+/*
+ * lstat() - BSD 4.3 and SVR4 - Get File Status
+ *
+ * COPYRIGHT (c) 1989-1998.
+ * On-Line Applications Research Corporation (OAR).
+ * Copyright assigned to U.S. Government, 1994.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
+ */
+
+#define _STAT_NAME lstat
+#define _STAT_R_NAME _lstat_r
+#define _STAT_FOLLOW_LINKS FALSE
+
+#include "stat.c"