aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorEli Zaretskii2006-04-08 16:44:27 +0000
committerEli Zaretskii2006-04-08 16:44:27 +0000
commit4f27350a997be22c2f2efbfbbcc201233ca2067e (patch)
tree5b4aead4b9a36290459ed371016c9b9c43c446ac /src/alloc.c
parent7e7735293958b207f7b026423212b0b2f68849f3 (diff)
downloademacs-4f27350a997be22c2f2efbfbbcc201233ca2067e.tar.gz
emacs-4f27350a997be22c2f2efbfbbcc201233ca2067e.zip
[STDC_HEADERS]: Include stddef.h.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 5b42a0016a8..1d3dc10c411 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -23,6 +23,10 @@ Boston, MA 02110-1301, USA. */
23#include <stdio.h> 23#include <stdio.h>
24#include <limits.h> /* For CHAR_BIT. */ 24#include <limits.h> /* For CHAR_BIT. */
25 25
26#ifdef STDC_HEADERS
27#include <stddef.h> /* For offsetof, used by PSEUDOVECSIZE. */
28#endif
29
26#ifdef ALLOC_DEBUG 30#ifdef ALLOC_DEBUG
27#undef INLINE 31#undef INLINE
28#endif 32#endif