Skip to content
Snippets Groups Projects
Commit b9d90b8c authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1998-03-11 14:26:53 by simonm]

add all missing SIZEOF_* and ALIGNMENT_* defines.
parent 3c8de5a6
No related merge requests found
......@@ -189,11 +189,29 @@
/* Define this if your time.h defines altzone */
#undef HAVE_ALTZONE
/* sizeof(int) */
#undef SIZEOF_INT
/* sizeof(unsigned int) */
#undef SIZEOF_UNSIGNED_INT
/* sizeof(long) */
#undef SIZEOF_LONG
/* sizeof(void *) */
#undef SIZEOF_VOID_P
/* sizeof(float) */
#undef SIZEOF_FLOAT
/* sizeof(double) */
#undef SIZEOF_DOUBLE
/* minimum alignment of unsigned int */
#undef ALIGNMENT_UNSIGNED_INT
/* minimum alignment of long */
#undef ALIGNMENT_LONG
/* minimum alignment of float */
#undef ALIGNMENT_FLOAT
/* minimum alignment of double */
#undef ALIGNMENT_DOUBLE
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment