From fbc9d6f3c3f22d2094a9fa80cafe9dd878211300 Mon Sep 17 00:00:00 2001 From: Erwin Janssen Date: Sun, 18 Dec 2016 12:49:49 +0100 Subject: [PATCH] Remove check for `size_t` in configure.ac The macro `AC_TYPE_SIZE_T` checks if the type `size_t` is available, but this type is part of the C standard, checking is therefore not required. --- configure.ac | 1 - windows/include/config.h | 3 --- 2 files changed, 4 deletions(-) diff --git a/configure.ac b/configure.ac index 4ef571f8e..d9d3e3358 100644 --- a/configure.ac +++ b/configure.ac @@ -415,7 +415,6 @@ dnl ----------------------------------- dnl Check for various typedefs and provide substitutes if they do not exist. AC_TYPE_PID_T -AC_TYPE_SIZE_T AC_TYPE_SSIZE_T AC_TYPE_UID_T diff --git a/windows/include/config.h b/windows/include/config.h index 31aa16127..9db05aed3 100644 --- a/windows/include/config.h +++ b/windows/include/config.h @@ -424,9 +424,6 @@ /* Define to `int' if does not define. */ /* #undef pid_t */ -/* Define to `unsigned int' if does not define. */ -/* #undef size_t */ - /* Define to `int' if does not define. */ //#define ssize_t int -- 2.40.0