Node:Particular Types,
Next:Generic Types,
Up:Types
Particular Type Checks
These macros check for particular C types in sys/types.h,
stdlib.h and others, if they exist.
| Define GETGROUPS_Tto be whichever ofgid_torintis the base type of the array argument togetgroups. | 
| Equivalent to AC_CHECK_TYPE(mode_t, int). | 
| Equivalent to AC_CHECK_TYPE(off_t, long). | 
| Equivalent to AC_CHECK_TYPE(pid_t, int). | 
| If signal.hdeclaressignalas returning a pointer to a
function returningvoid, defineRETSIGTYPEto bevoid; otherwise, define it to beint.Define signal handlers as returning type RETSIGTYPE:
 RETSIGTYPE
hup_handler ()
{
...
}
 | 
| Equivalent to AC_CHECK_TYPE(size_t, unsigned). | 
| If uid_tis not defined, defineuid_tto beintandgid_tto beint. |