From: Ulrich Drepper Date: Sun, 14 Apr 2002 08:38:17 +0000 (+0000) Subject: Use INTDEF for __fxstat64. X-Git-Tag: upstream/2.30~10627^2~1706 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9155b112e9e39428d6ca61cd879082022231a207;p=external%2Fglibc.git Use INTDEF for __fxstat64. --- diff --git a/sysdeps/unix/sysv/aix/fxstat64.c b/sysdeps/unix/sysv/aix/fxstat64.c index 39f8cd9..509fb2c 100644 --- a/sysdeps/unix/sysv/aix/fxstat64.c +++ b/sysdeps/unix/sysv/aix/fxstat64.c @@ -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,11 +22,16 @@ #define STX_NORMAL 0x00 #define STX_64 0x08 +#undef __fxstat64 + extern int fstatx (int fd, struct stat64 *st, int len, int cmd); +#undef __fxstat64 + int __fxstat64 (int ver, int fd, struct stat64 *st) { assert (ver == 0); return fstatx (fd, st, sizeof (*st), STX_NORMAL | STX_64); } +INTDEF(__fxstat64)