alignof: Avoid collision with stdalign module.
authorBruno Haible <bruno@clisp.org>
Tue, 1 Nov 2011 11:43:23 +0000 (12:43 +0100)
committerBruno Haible <bruno@clisp.org>
Tue, 1 Nov 2011 11:43:23 +0000 (12:43 +0100)
* lib/alignof.h (alignof): Remove macro.
* NEWS: Mention the change.
Reported by Paul Eggert.

ChangeLog
NEWS
lib/alignof.h

index 097de6c..763f9be 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2011-11-01  Bruno Haible  <bruno@clisp.org>
 
+       alignof: Avoid collision with stdalign module.
+       * lib/alignof.h (alignof): Remove macro.
+       * NEWS: Mention the change.
+       Reported by Paul Eggert.
+
+2011-11-01  Bruno Haible  <bruno@clisp.org>
+
        New module 'fchownat', split off from module 'openat'.
        * lib/openat.h (chownat, lchownat): Enable only if GNULIB_FCHOWNAT is
        defined.
diff --git a/NEWS b/NEWS
index 6dee4ae..477c61c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -12,6 +12,9 @@ User visible incompatible changes
 
 Date        Modules         Changes
 
+2011-11-01  alignof         This module no longer provides the alignof() macro.
+                            Use either alignof_slot() or alignof_type() instead.
+
 2011-11-01  openat          This module no longer provides the fchownat()
                             function. If you need this function, you now need
                             to request the 'fchownat' module.
index 9b8e00d..bff3930 100644 (file)
 
 #include <stddef.h>
 
-/* Determine the alignment of a structure slot (field) of a given type,
+/* alignof_slot (TYPE)
+   Determine the alignment of a structure slot (field) of a given type,
    at compile time.  Note that the result depends on the ABI.
+   This is the same as alignof (TYPE) and _Alignof (TYPE), defined in
+   <stdalign.h> if __alignof_is_defined is 1.
    Note: The result cannot be used as a value for an 'enum' constant,
    due to bugs in HP-UX 10.20 cc and AIX 3.2.5 xlc.  */
 #if defined __cplusplus
@@ -31,7 +34,8 @@
 # define alignof_slot(type) offsetof (struct { char __slot1; type __slot2; }, __slot2)
 #endif
 
-/* Determine the good alignment of an object of the given type at compile time.
+/* alignof_type (TYPE)
+   Determine the good alignment of an object of the given type at compile time.
    Note that this is not necessarily the same as alignof_slot(type).
    For example, with GNU C on x86 platforms: alignof_type(double) = 8, but
    - when -malign-double is not specified:  alignof_slot(double) = 4,
 # define alignof_type alignof_slot
 #endif
 
-/* alignof is an alias for alignof_slot semantics, since that's what most
-   callers need.
-   Note: The result cannot be used as a value for an 'enum' constant,
-   due to bugs in HP-UX 10.20 cc and AIX 3.2.5 xlc.  */
-#define alignof alignof_slot
-
 #endif /* _ALIGNOF_H */