]> git.ipfire.org Git - thirdparty/glibc.git/blame - io/mknod.c
Revert last change.
[thirdparty/glibc.git] / io / mknod.c
CommitLineData
93995795 1/* Copyright (C) 1995, 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
1d8dc429 19#include <sys/types.h>
9b29e6f7 20#include <sys/stat.h>
28f540f4 21
9b29e6f7
RM
22/* This definition is only used if inlining fails for this function; see
23 the last page of <sys/stat.h>. The real work is done by the `x'
24 function which is passed a version number argument. We arrange in the
25 makefile that when not inlined this function is always statically
26 linked; that way a dynamically-linked executable always encodes the
27 version number corresponding to the data structures it uses, so the `x'
28 functions in the shared library can adapt without needing to recompile
29 all callers. */
30
31int
32__mknod (const char *path, mode_t mode, dev_t dev)
33{
34 return __xmknod (_MKNOD_VER, path, mode, &dev);
35}
36
37weak_alias (__mknod, mknod)