summaryrefslogtreecommitdiff
path: root/m4/ssize_t.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-11-03 17:24:33 +0000
committerJim Meyering <jim@meyering.net>1999-11-03 17:24:33 +0000
commit62dac2622ff475999a693e55c53145a36c7f8036 (patch)
tree4161ffb3188e4adde43552c5d612281d11102320 /m4/ssize_t.m4
parent76f864a015b3e1e32dd084bf9bdfd816d35862df (diff)
downloadcoreutils-62dac2622ff475999a693e55c53145a36c7f8036.tar.xz
Remove file. No longer needed since the new version of
AC_CHECK_TYPE checks includes unistd.h.
Diffstat (limited to 'm4/ssize_t.m4')
-rw-r--r--m4/ssize_t.m424
1 files changed, 0 insertions, 24 deletions
diff --git a/m4/ssize_t.m4 b/m4/ssize_t.m4
deleted file mode 100644
index 85a51819a..000000000
--- 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
- ]
- )
- ]
-)