Wed Jun 26 01:58:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>

* sunrpc/xdr.c (xdr_int): #if 0 out unresolved references in dead code.
This commit is contained in:
Roland McGrath 1996-06-26 06:13:37 +00:00
parent 23586dcc72
commit be64fe6d86

View file

@ -119,10 +119,13 @@ xdr_int(xdrs, ip)
} else if (sizeof (int) == sizeof (short)) {
return (xdr_short(xdrs, (short *)ip));
} else {
abort (); /* roland@gnu */
#if 0
/* force unresolved reference (link-time error): */
extern unexpected_sizes_in_xdr_int ();
unexpected_sizes_in_xdr_int();
#endif
}
#endif
}