summaryrefslogtreecommitdiff
path: root/xmalloc.c
diff options
context:
space:
mode:
authorJari Aalto <jari.aalto@cante.net>2004-07-27 13:29:18 +0000
committerJari Aalto <jari.aalto@cante.net>2009-09-12 16:46:56 +0000
commitb80f6443b6b7b620c7272664c66ecb0b120a0998 (patch)
tree9f71c98d8fe8fa0f41d95e1eb4227f32a09d43ca /xmalloc.c
parent7117c2d221b2aed4ede8600f6a36b7c1454b4f55 (diff)
downloadbash-b80f6443b6b7b620c7272664c66ecb0b120a0998.tar.gz
Imported from ../bash-3.0.tar.gz.
Diffstat (limited to 'xmalloc.c')
-rw-r--r--xmalloc.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/xmalloc.c b/xmalloc.c
index c2011f9c..93d19281 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -38,6 +38,8 @@
#include "error.h"
+#include "bashintl.h"
+
#if !defined (PTR_T)
# if defined (__STDC__)
# define PTR_T void *
@@ -88,9 +90,9 @@ xmalloc (bytes)
{
#if defined (HAVE_SBRK)
allocated = findbrk ();
- fatal_error ("xmalloc: cannot allocate %lu bytes (%lu bytes allocated)", (unsigned long)bytes, (unsigned long)allocated);
+ fatal_error (_("xmalloc: cannot allocate %lu bytes (%lu bytes allocated)"), (unsigned long)bytes, (unsigned long)allocated);
#else
- fatal_error ("xmalloc: cannot allocate %lu bytes", (unsigned long)bytes);
+ fatal_error (_("xmalloc: cannot allocate %lu bytes"), (unsigned long)bytes);
#endif /* !HAVE_SBRK */
}
@@ -110,9 +112,9 @@ xrealloc (pointer, bytes)
{
#if defined (HAVE_SBRK)
allocated = findbrk ();
- fatal_error ("xrealloc: cannot reallocate %lu bytes (%lu bytes allocated)", (unsigned long)bytes, (unsigned long)allocated);
+ fatal_error (_("xrealloc: cannot reallocate %lu bytes (%lu bytes allocated)"), (unsigned long)bytes, (unsigned long)allocated);
#else
- fatal_error ("xrealloc: cannot allocate %lu bytes", (unsigned long)bytes);
+ fatal_error (_("xrealloc: cannot allocate %lu bytes"), (unsigned long)bytes);
#endif /* !HAVE_SBRK */
}
@@ -146,9 +148,9 @@ sh_xmalloc (bytes, file, line)
{
#if defined (HAVE_SBRK)
allocated = findbrk ();
- fatal_error ("xmalloc: %s:%d: cannot allocate %lu bytes (%lu bytes allocated)", file, line, (unsigned long)bytes, (unsigned long)allocated);
+ fatal_error (_("xmalloc: %s:%d: cannot allocate %lu bytes (%lu bytes allocated)"), file, line, (unsigned long)bytes, (unsigned long)allocated);
#else
- fatal_error ("xmalloc: %s:%d: cannot allocate %lu bytes", file, line, (unsigned long)bytes);
+ fatal_error (_("xmalloc: %s:%d: cannot allocate %lu bytes"), file, line, (unsigned long)bytes);
#endif /* !HAVE_SBRK */
}
@@ -170,9 +172,9 @@ sh_xrealloc (pointer, bytes, file, line)
{
#if defined (HAVE_SBRK)
allocated = findbrk ();
- fatal_error ("xrealloc: %s:%d: cannot reallocate %lu bytes (%lu bytes allocated)", file, line, (unsigned long)bytes, (unsigned long)allocated);
+ fatal_error (_("xrealloc: %s:%d: cannot reallocate %lu bytes (%lu bytes allocated)"), file, line, (unsigned long)bytes, (unsigned long)allocated);
#else
- fatal_error ("xrealloc: %s:%d: cannot allocate %lu bytes", file, line, (unsigned long)bytes);
+ fatal_error (_("xrealloc: %s:%d: cannot allocate %lu bytes"), file, line, (unsigned long)bytes);
#endif /* !HAVE_SBRK */
}