diff options
Diffstat (limited to 'lib/malloc/imalloc.h')
-rw-r--r-- | lib/malloc/imalloc.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/malloc/imalloc.h b/lib/malloc/imalloc.h index 3920ce9..72ba65a 100644 --- a/lib/malloc/imalloc.h +++ b/lib/malloc/imalloc.h @@ -1,6 +1,6 @@ /* imalloc.h -- internal malloc definitions shared by source files. */ -/* Copyright (C) 2001 Free Software Foundation, Inc. +/* Copyright (C) 2001-2003 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. @@ -159,4 +159,10 @@ do { \ memcpy ((dest), (src), (nbytes)) \ } while(0) +#if defined (SHELL) +# include "bashintl.h" +#else +# define _(x) x +#endif + #endif /* _IMALLOC_H */ |