source: rtems/cpukit/libfs/src/devfs/devfs_node_type.c @ 0a7278e

4.104.115
Last change on this file since 0a7278e was 0a7278e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/29/09 at 13:20:53

Whitespace removal.

  • Property mode set to 100644
File size: 409 bytes
Line 
1/*
2 *  The license and distribution terms for this file may be
3 *  found in the file LICENSE in this distribution or at
4 *  http://www.rtems.com/license/LICENSE.
5 *
6 *  $Id$
7 */
8
9#if HAVE_CONFIG_H
10#include "config.h"
11#endif
12
13#include "devfs.h"
14
15int devFS_node_type(
16  rtems_filesystem_location_info_t  *pathloc
17)
18{
19  /*
20   * There is only one type of node: device
21   */
22
23  return RTEMS_FILESYSTEM_DEVICE;
24}
25
26
Note: See TracBrowser for help on using the repository browser.