summaryrefslogtreecommitdiff
path: root/sunrpc/xdr.c
diff options
context:
space:
mode:
Diffstat (limited to 'sunrpc/xdr.c')
-rw-r--r--sunrpc/xdr.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sunrpc/xdr.c b/sunrpc/xdr.c
index d20af94b65..a5241a5120 100644
--- a/sunrpc/xdr.c
+++ b/sunrpc/xdr.c
@@ -162,10 +162,13 @@ xdr_u_int(xdrs, up)
} else if (sizeof (u_int) == sizeof (u_short)) {
return (xdr_short(xdrs, (short *)up));
} else {
+ abort (); /* drepper@gnu */
+#if 0
/* force unresolved reference (link-time error): */
extern unexpected_sizes_in_xdr_u_int ();
unexpected_sizes_in_xdr_u_int();
+#endif
}
#endif
}