diff options
author | Chet Ramey <chet.ramey@case.edu> | 2014-02-26 09:36:43 -0500 |
---|---|---|
committer | Chet Ramey <chet.ramey@case.edu> | 2014-02-26 09:36:43 -0500 |
commit | ac50fbac377e32b98d2de396f016ea81e8ee9961 (patch) | |
tree | f71882366b98fedf1a88a063103219a4935de926 /lib/malloc/imalloc.h | |
parent | 4539d736f1aff232857a854fd2a68df0c98d9f34 (diff) | |
download | android_external_bash-ac50fbac377e32b98d2de396f016ea81e8ee9961.tar.gz android_external_bash-ac50fbac377e32b98d2de396f016ea81e8ee9961.tar.bz2 android_external_bash-ac50fbac377e32b98d2de396f016ea81e8ee9961.zip |
Bash-4.3 distribution sources and documentation
Diffstat (limited to 'lib/malloc/imalloc.h')
-rw-r--r-- | lib/malloc/imalloc.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/malloc/imalloc.h b/lib/malloc/imalloc.h index 34df10a..82b09eb 100644 --- a/lib/malloc/imalloc.h +++ b/lib/malloc/imalloc.h @@ -45,11 +45,11 @@ # define NULL 0 #endif -#if !defined (__STRING) +#if !defined (CPP_STRING) # if defined (HAVE_STRINGIZE) -# define __STRING(x) #x +# define CPP_STRING(x) #x # else -# define __STRING(x) "x" +# define CPP_STRING(x) "x" # endif /* !HAVE_STRINGIZE */ #endif /* !__STRING */ @@ -165,4 +165,9 @@ do { \ # define _(x) x #endif +#include <signal.h> + +extern void _malloc_block_signals __P((sigset_t *, sigset_t *)); +extern void _malloc_unblock_signals __P((sigset_t *, sigset_t *)); + #endif /* _IMALLOC_H */ |