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

[project @ 1998-03-03 17:30:14 by simonm]

Add some size tests.
parent 961a3778
No related merge requests found
......@@ -470,6 +470,13 @@ dnl ** check for leading underscores in symbol names
#
AC_UNDERSCORE
#
dnl ** check the size of various C types
#
AC_CHECK_SIZEOF(int, 4)
AC_CHECK_SIZEOF(long, 4)
AC_CHECK_SIZEOF(void *, 4)
AC_OUTPUT(mk/config.mk, echo timestamp > mk/stamp-h )
echo ''
......
......@@ -188,3 +188,12 @@
/* Define this if your time.h defines altzone */
#undef HAVE_ALTZONE
/* sizeof(int) */
#undef SIZEOF_INT
/* sizeof(long) */
#undef SIZEOF_LONG
/* sizeof(void *) */
#undef SIZEOF_VOID_P
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