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-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d8fe3fa29b2ef9abaf07b28b0b7395b7fa7f540;p=pspp 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 - ] - ) - ] -)