mirror of git://sourceware.org/git/glibc.git
* nis/nis_xdr.c: Help gcc to generate unnecessary wrapper functions.
This commit is contained in:
parent
4c5b09ed6b
commit
1cd4f3c78b
|
@ -1,3 +1,7 @@
|
|||
2005-07-28 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* nis/nis_xdr.c: Help gcc to generate unnecessary wrapper functions.
|
||||
|
||||
2005-07-28 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* stdio-common/fxprintf.c (__fxprintf): Add INTUSE to _IO_vfprintf
|
||||
|
|
|
@ -41,13 +41,13 @@ _xdr_nis_name (XDR *xdrs, nis_name *objp)
|
|||
return xdr_string (xdrs, objp, ~0);
|
||||
}
|
||||
|
||||
static bool_t
|
||||
static __always_inline bool_t
|
||||
xdr_zotypes (XDR *xdrs, zotypes *objp)
|
||||
{
|
||||
return xdr_enum (xdrs, (enum_t *) objp);
|
||||
}
|
||||
|
||||
static bool_t
|
||||
static __always_inline bool_t
|
||||
xdr_nstype (XDR *xdrs, nstype *objp)
|
||||
{
|
||||
return xdr_enum (xdrs, (enum_t *) objp);
|
||||
|
|
Loading…
Reference in New Issue