From: Jim Meyering Date: Wed, 3 Nov 1999 17:24:33 +0000 (+0000) Subject: Remove file. No longer needed since the new version of X-Git-Tag: FILEUTILS-4_0j-trial~100 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=62dac2622ff475999a693e55c53145a36c7f8036;p=thirdparty%2Fcoreutils.git Remove file. No longer needed since the new version of AC_CHECK_TYPE checks includes unistd.h. --- diff --git a/m4/ssize_t.m4 b/m4/ssize_t.m4 deleted file mode 100644 index 85a51819aa..0000000000 --- a/m4/ssize_t.m4 +++ /dev/null @@ -1,24 +0,0 @@ -#serial 1 - -AC_PREREQ(2.14a) - -dnl This is a specialization of AC_CHECK_TYPE applied to `ssize_t' with -dnl the difference that it also includes unistd.h on systems that have it. -dnl On Fujitsu UXP/V systems ssize_t is defined in unistd.h. -AC_DEFUN(AC_TYPE_SSIZE_T, - [ - AC_CHECK_HEADERS(unistd.h) - AC_CHECK_TYPE(ssize_t, int, - [ -#include -#if STDC_HEADERS -# include -# include -#endif -#if HAVE_UNISTD_H -# include -#endif - ] - ) - ] -)