diff options
Diffstat (limited to 'libguile')
-rw-r--r-- | libguile/__scm.h | 9 | ||||
-rw-r--r-- | libguile/chars.h | 5 | ||||
-rw-r--r-- | libguile/numbers.h | 5 |
3 files changed, 9 insertions, 10 deletions
diff --git a/libguile/__scm.h b/libguile/__scm.h index 32d5de354..6861a8104 100644 --- a/libguile/__scm.h +++ b/libguile/__scm.h @@ -422,6 +422,15 @@ typedef long SCM_STACKITEM; #endif /* SCM___SCM_H */ + + + +/* Trivial type declarations and forward declarations. */ +typedef scm_t_int32 scm_t_wchar; + + + + /* Local Variables: c-file-style: "gnu" diff --git a/libguile/chars.h b/libguile/chars.h index 26ba7acd2..36b2ee803 100644 --- a/libguile/chars.h +++ b/libguile/chars.h @@ -27,11 +27,6 @@ #include "libguile/__scm.h" #include <libguile/error.h> -#ifndef SCM_T_WCHAR_DEFINED -typedef scm_t_int32 scm_t_wchar; -#define SCM_T_WCHAR_DEFINED -#endif /* SCM_T_WCHAR_DEFINED */ - /* Immediate Characters */ diff --git a/libguile/numbers.h b/libguile/numbers.h index 1bad7d32f..1164d1916 100644 --- a/libguile/numbers.h +++ b/libguile/numbers.h @@ -32,11 +32,6 @@ #include "libguile/gc.h" #include "libguile/print.h" -#ifndef SCM_T_WCHAR_DEFINED -typedef scm_t_int32 scm_t_wchar; -#define SCM_T_WCHAR_DEFINED -#endif /* SCM_T_WCHAR_DEFINED */ - /* Immediate Numbers, also known as fixnums |