dnl CF_CHECK_TYPE2 version: 3 updated: 2025/08/08 20:44:18
dnl --------------
dnl Check if the given type can be declared via the given header.
dnl $1 = the type to check
dnl $2 = the header (i.e., not one of the default includes)
AC_DEFUN([CF_CHECK_TYPE2],[
	AC_CHECK_TYPES($1,,,[
$ac_includes_default
ifelse($2,,,[#include <$2>])])
])dnl
