~ chicken-core (chicken-5) 5cf19f5e2831c2b78fb992562ab2f61362ddf986
commit 5cf19f5e2831c2b78fb992562ab2f61362ddf986
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Wed Dec 29 12:15:14 2010 +0100
Commit: felix <felix@call-with-current-continuation.org>
CommitDate: Wed Dec 29 12:15:14 2010 +0100
typo fixes (thanks to Peter Bex)
diff --git a/runtime.c b/runtime.c
index 1b6205cb..409e7eff 100644
--- a/runtime.c
+++ b/runtime.c
@@ -112,9 +112,9 @@ static C_TLS int timezone;
#ifdef C_HACKED_APPLY
# if defined(__MACH__) || defined(__MINGW32__) || defined(__CYGWIN__)
-etern void C_do_apply_hack(void *proc, C_word *args, int count) C_noret;
+extern void C_do_apply_hack(void *proc, C_word *args, int count) C_noret;
# else
-etern void _C_do_apply_hack(void *proc, C_word *args, int count) C_noret;
+extern void _C_do_apply_hack(void *proc, C_word *args, int count) C_noret;
# define C_do_apply_hack _C_do_apply_hack
# endif
#endif
Trap