X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=m4%2Fsys_types.m4;fp=m4%2Fsys_types.m4;h=352d8b5adb2c87e35114e7f6c63386829a7900da;hb=b4508f6b917660970f887894a6aaed6c220a2c72;hp=0000000000000000000000000000000000000000;hpb=3137da963d298c73ce3bc858874fdfc87fa941b7;p=m6w6%2Fext-psi diff --git a/m4/sys_types.m4 b/m4/sys_types.m4 new file mode 100644 index 0000000..352d8b5 --- /dev/null +++ b/m4/sys_types.m4 @@ -0,0 +1,24 @@ +AC_DEFUN(PSI_CHECK_SYS_TYPES, [ + AC_CHECK_HEADERS(sys/types.h) + + PSI_TYPE(blkcnt_t, int) + PSI_TYPE(blksize_t, int) + PSI_TYPE(clock_t, int) + PSI_TYPE(clockid_t, int) + PSI_TYPE(dev_t, int) + PSI_TYPE(fsblkcnt_t, uint) + PSI_TYPE(fsfilcnt_t, uint) + PSI_TYPE(gid_t, int) + PSI_TYPE(id_t, int) + PSI_TYPE(ino_t, uint) + PSI_TYPE(key_t, int) + PSI_TYPE(mode_t, int) + PSI_TYPE(nlink_t, int) + PSI_TYPE(off_t, int) + PSI_TYPE(pid_t, int) + PSI_TYPE(ssize_t, int) + PSI_TYPE(suseconds_t, int) + PSI_TYPE(time_t, int) + PSI_TYPE(timer_t, int) + PSI_TYPE(uid_t, int) +])