]> sourceware.org Git - glibc.git/blame - io/stat.c
Tue May 14 14:07:10 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
[glibc.git] / io / stat.c
CommitLineData
c43b8c4b 1/* Copyright (C) 1996 Free Software Foundation, Inc.
28f540f4
RM
2This file is part of the GNU C Library.
3
4The GNU C Library is free software; you can redistribute it and/or
5modify it under the terms of the GNU Library General Public License as
6published by the Free Software Foundation; either version 2 of the
7License, or (at your option) any later version.
8
9The GNU C Library is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12Library General Public License for more details.
13
14You should have received a copy of the GNU Library General Public
15License along with the GNU C Library; see the file COPYING.LIB. If
16not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17Cambridge, MA 02139, USA. */
18
ff9bef7f 19#include <sys/stat.h>
28f540f4 20
c43b8c4b
RM
21/* This definition is only used if inlining fails for this function; see
22 the last page of <sys/stat.h>. The real work is done by the `x'
23 function which is passed a version number argument. We arrange in the
24 makefile that when not inlined this function is always statically
25 linked; that way a dynamically-linked executable always encodes the
26 version number corresponding to the data structures it uses, so the `x'
27 functions in the shared library can adapt without needing to recompile
28 all callers. */
d2f5be2a 29
ff9bef7f
RM
30int
31__stat (const char *file, struct stat *buf)
32{
33 return __xstat (_STAT_VER, file, buf);
34}
d2f5be2a
UD
35
36weak_alias (__stat, stat)
This page took 0.057675 seconds and 5 git commands to generate.