Use INTDEF for __lxstat64.

This commit is contained in:
Ulrich Drepper 2002-04-15 05:28:30 +00:00
parent 2093a68877
commit 548fe33d15

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
/* Copyright (C) 1999, 2000, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -22,6 +22,8 @@
#define STX_LINK 0x01
#define STX_64 0x08
#undef __lxstat64
extern int statx (const char *pathname, struct stat64 *st, int len, int cmd);
int
@ -30,3 +32,5 @@ __lxstat64 (int ver, const char *pathname, struct stat64 *st)
assert (ver == 0);
return statx (pathname, st, sizeof (*st), STX_LINK | STX_64);
}
INTDEF(__lxstat64)