1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-25 15:00:45 -08:00

[STDC_HEADERS]: Include stddef.h.

This commit is contained in:
Eli Zaretskii 2006-04-08 16:44:27 +00:00
parent 7e77352939
commit 4f27350a99
2 changed files with 6 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2006-04-08 Eli Zaretskii <eliz@gnu.org>
* alloc.c [STDC_HEADERS]: Include stddef.h.
* lisp.h (PSEUDOVECSIZE): Fix last change.
2006-04-08 Stefan Monnier <monnier@iro.umontreal.ca>

View file

@ -23,6 +23,10 @@ Boston, MA 02110-1301, USA. */
#include <stdio.h>
#include <limits.h> /* For CHAR_BIT. */
#ifdef STDC_HEADERS
#include <stddef.h> /* For offsetof, used by PSEUDOVECSIZE. */
#endif
#ifdef ALLOC_DEBUG
#undef INLINE
#endif