source: rtems/cpukit/libfs/src/defaults/default_link.c @ 0ec9bbc

5
Last change on this file since 0ec9bbc was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 645 bytes
Line 
1/**
2 * @file
3 *
4 * @brief RTEMS Default File System Link
5 */
6
7/*
8 *  COPYRIGHT (c) 2010.
9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.org/license/LICENSE.
14 */
15
16#if HAVE_CONFIG_H
17  #include "config.h"
18#endif
19
20#include <rtems/libio_.h>
21#include <rtems/seterr.h>
22
23int rtems_filesystem_default_link(
24  const rtems_filesystem_location_info_t *parentloc,
25  const rtems_filesystem_location_info_t *targetloc,
26  const char *name,
27  size_t namelen
28)
29{
30  rtems_set_errno_and_return_minus_one( ENOTSUP );
31}
Note: See TracBrowser for help on using the repository browser.