changeset 55665:4c204021f2f5

(DECL_ALIGN): Remove restriction on MS-DOS systems.
author Eli Zaretskii <eliz@gnu.org>
date Tue, 18 May 2004 13:51:48 +0000
parents b001dc626000
children c608b21fae26
files src/lisp.h
diffstat 1 files changed, 3 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/lisp.h	Tue May 18 13:38:59 2004 +0000
+++ b/src/lisp.h	Tue May 18 13:51:48 2004 +0000
@@ -305,12 +305,10 @@
    variable VAR of type TYPE with the added requirement that it be
    TYPEBITS-aligned. */
 #ifndef DECL_ALIGN
-# ifndef MSDOS	/* MS-DOS doesn't currently support USE_LSB_TAG */
 /* What compiler directive should we use for non-gcc compilers?  -stef  */
-#  if defined (__GNUC__)
-#   define DECL_ALIGN(type, var) \
-     type __attribute__ ((__aligned__ (1 << GCTYPEBITS))) var
-#  endif
+# if defined (__GNUC__)
+#  define DECL_ALIGN(type, var) \
+    type __attribute__ ((__aligned__ (1 << GCTYPEBITS))) var
 # endif
 #endif