From 6a9f73fb8fd3cc1347a320f1b8b3d236a6586fbf Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Wed, 20 Jun 2018 15:09:57 +0200 Subject: [PATCH] Remove crufty support for 16-bit architectures. * libguile/__scm.h: Remove cases for 16-bit architectures (!). --- libguile/__scm.h | 15 --------------- 1 file changed, 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 */