source: rtems/cpukit/libcsupport/src/lstat.c @ 98b785e

4.115
Last change on this file since 98b785e was 4088d01d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/01/08 at 11:42:19

Convert using "bool".

  • Property mode set to 100644
File size: 483 bytes
Line 
1/*
2 *  lstat() - BSD 4.3 and SVR4 - Get File Status
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#define _STAT_NAME         lstat
19#define _STAT_R_NAME       _lstat_r
20#define _STAT_FOLLOW_LINKS false
21
22#include "stat.c"
Note: See TracBrowser for help on using the repository browser.