summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2006-03-27 12:49:24 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2006-03-27 12:49:24 +0000
commit4b252a4a4949a3dd0476d4ec0f5e6d939e8449f3 (patch)
treea68f40a4d6d36b184f1794266c6a375a1e870dea /include
parent7364973e51ba9e93bf414d985ebdefc2bc43dde2 (diff)
Revert change to remove 'error_print_progname' so that gettext will build. It can be commented out again when someone figures out how to fix gettext building and do the proper thing.
Diffstat (limited to 'include')
-rw-r--r--include/error.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/error.h b/include/error.h
index ef97ff2c7..3638bc6e9 100644
--- a/include/error.h
+++ b/include/error.h
@@ -53,12 +53,12 @@ extern void error_at_line (int __status, int __errnum, const char *__fname,
/* If NULL, error will flush stdout, then print on stderr the program
name, a colon and a space. Otherwise, error will call this
function without parameters instead. */
-/* extern void (*error_print_progname) (void); */
+extern void (*error_print_progname) (void);
#else
void error ();
void error_at_line ();
-/* extern void (*error_print_progname) (); */
+extern void (*error_print_progname) ();
#endif
/* This variable is incremented each time `error' is called. */