summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/freenode.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/freenode.c')
-rw-r--r--cpukit/libcsupport/src/freenode.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/cpukit/libcsupport/src/freenode.c b/cpukit/libcsupport/src/freenode.c
new file mode 100644
index 0000000000..21a9c1de91
--- /dev/null
+++ b/cpukit/libcsupport/src/freenode.c
@@ -0,0 +1,20 @@
+/*
+ * freenode()
+ *
+ * COPYRIGHT (c) 1989-2010.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#include <stdlib.h>
+#include <rtems/libio_.h>
+
+void rtems_filesystem_freenode( rtems_filesystem_location_info_t *_node )
+{
+ _node->ops->freenod_h(_node );
+}