diff options
author | Andy Wingo <wingo@pobox.com> | 2018-06-20 15:09:57 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-06-20 15:09:57 +0200 |
commit | 6a9f73fb8fd3cc1347a320f1b8b3d236a6586fbf (patch) | |
tree | 885bb63ea8d73dca45456e83e78aba67d60cdbf6 | |
parent | 51c164a7bc94816eb543bc5d4c42c8a501bbf6cb (diff) | |
download | guile-6a9f73fb8fd3cc1347a320f1b8b3d236a6586fbf.tar.gz |
Remove crufty support for 16-bit architectures.
* libguile/__scm.h: Remove cases for 16-bit architectures (!).
-rw-r--r-- | libguile/__scm.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/libguile/__scm.h b/libguile/__scm.h index e8ebb1534..8a31c8348 100644 --- a/libguile/__scm.h +++ b/libguile/__scm.h @@ -314,22 +314,7 @@ typedef struct scm_dynamic_state scm_t_dynamic_state; /* If stack is not longword aligned then */ -/* #define SHORT_ALIGN */ -#ifdef THINK_C -# define SHORT_ALIGN -#endif -#ifdef MSDOS -# define SHORT_ALIGN -#endif -#ifdef atarist -# define SHORT_ALIGN -#endif - -#ifdef SHORT_ALIGN -typedef short SCM_STACKITEM; -#else typedef long SCM_STACKITEM; -#endif /* Cast pointer through (void *) in order to avoid compiler warnings when strict aliasing is enabled */ |