diff options
Diffstat (limited to 'libc/inet/rpc/xdr.c')
-rw-r--r-- | libc/inet/rpc/xdr.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libc/inet/rpc/xdr.c b/libc/inet/rpc/xdr.c index 57d7dbd40..1bca29752 100644 --- a/libc/inet/rpc/xdr.c +++ b/libc/inet/rpc/xdr.c @@ -44,7 +44,6 @@ static char sccsid[] = "@(#)xdr.c 1.35 87/08/12"; #include <stdio.h> #include <limits.h> #include <string.h> -#include <libintl.h> #include <rpc/types.h> #include <rpc/xdr.h> @@ -557,7 +556,7 @@ xdr_bytes (XDR *xdrs, char **cpp, u_int *sizep, u_int maxsize) } if (sp == NULL) { - (void) fputs (_("xdr_bytes: out of memory\n"), stderr); + (void) fputs ("xdr_bytes: out of memory\n", stderr); return FALSE; } /* fall into ... */ @@ -694,7 +693,7 @@ xdr_string (XDR *xdrs, char **cpp, u_int maxsize) *cpp = sp = (char *) mem_alloc (nodesize); if (sp == NULL) { - (void) fputs (_("xdr_string: out of memory\n"), stderr); + (void) fputs ("xdr_string: out of memory\n", stderr); return FALSE; } sp[size] = 0; |