diff options
author | Gary Houston <ghouston@arglist.com> | 1997-08-23 18:49:35 +0000 |
---|---|---|
committer | Gary Houston <ghouston@arglist.com> | 1997-08-23 18:49:35 +0000 |
commit | efb997f535d76323a83c1645fbb594dabf969fb3 (patch) | |
tree | d9ac22c9ce7a659a5460f747e974b8af5f49db66 /libguile/error.h | |
parent | 1782cc374cdd173341a61571ce926c42a1257f39 (diff) | |
download | guile-efb997f535d76323a83c1645fbb594dabf969fb3.tar.gz |
* errno.h: prototype for scm_strerror.
* error.c (scm_strerror): new procedure.
Diffstat (limited to 'libguile/error.h')
-rw-r--r-- | libguile/error.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/error.h b/libguile/error.h index 839a30eb7..4560d97fd 100644 --- a/libguile/error.h +++ b/libguile/error.h @@ -65,6 +65,7 @@ extern void (*scm_error_callback) SCM_P ((SCM key, char *subr, char *message, SCM args, SCM rest)); extern SCM scm_error_scm SCM_P ((SCM key, SCM subr, SCM message, SCM args, SCM rest)) SCM_NORETURN; +extern SCM scm_strerror (SCM err); extern void scm_syserror SCM_P ((char *subr)) SCM_NORETURN; extern void scm_syserror_msg SCM_P ((char *subr, char *message, SCM args, int eno)) SCM_NORETURN; |