changeset 1989:0f161f3143f0

Remove file. No longer needed since the new version of AC_CHECK_TYPE checks includes unistd.h.
author Jim Meyering <jim@meyering.net>
date Wed, 03 Nov 1999 17:24:33 +0000
parents dd348a15bf5c
children df746ba7ade6
files m4/ssize_t.m4
diffstat 1 files changed, 0 insertions(+), 24 deletions(-) [+]
line wrap: on
line diff
deleted file mode 100644
--- 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 <sys/types.h>
-#if STDC_HEADERS
-# include <stdlib.h>
-# include <stddef.h>
-#endif
-#if HAVE_UNISTD_H
-# include <unistd.h>
-#endif
-      ]
-    )
-  ]
-)