source: rtems/cpukit/libcsupport/src/lstat.c @ a29d2e7

4.104.114.84.95
Last change on this file since a29d2e7 was efec4b0, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/27/05 at 13:32:25

2005-01-27 Ralf Corsepius <ralf.corsepius@…>

  • libcsupport/src/lstat.c, libcsupport/src/readdir_r.c: Include config.h.
  • 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.