1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

Remove crufty support for 16-bit architectures.

* libguile/__scm.h: Remove cases for 16-bit architectures (!).
This commit is contained in:
Andy Wingo 2018-06-20 15:09:57 +02:00
parent 51c164a7bc
commit 6a9f73fb8f

View file

@ -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 */