aboutsummaryrefslogtreecommitdiffstats
path: root/error.h
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2014-02-26 09:36:43 -0500
committerChet Ramey <chet.ramey@case.edu>2014-02-26 09:36:43 -0500
commitac50fbac377e32b98d2de396f016ea81e8ee9961 (patch)
treef71882366b98fedf1a88a063103219a4935de926 /error.h
parent4539d736f1aff232857a854fd2a68df0c98d9f34 (diff)
downloadandroid_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 'error.h')
-rw-r--r--error.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/error.h b/error.h
index e79ba3e..4b17577 100644
--- a/error.h
+++ b/error.h
@@ -51,6 +51,7 @@ extern void internal_error __P((const char *, ...)) __attribute__((__format__ (
extern void internal_warning __P((const char *, ...)) __attribute__((__format__ (printf, 1, 2)));
/* Debugging functions, not enabled in released version. */
+extern char *strescape __P((const char *));
extern void itrace __P((const char *, ...)) __attribute__ ((__format__ (printf, 1, 2)));
extern void trace __P((const char *, ...)) __attribute__ ((__format__ (printf, 1, 2)));
@@ -59,7 +60,7 @@ extern void command_error __P((const char *, int, int, int));
extern char *command_errstr __P((int));
-/* Specific errror message functions that eventually call report_error or
+/* Specific error message functions that eventually call report_error or
internal_error. */
extern void err_badarraysub __P((const char *));