summaryrefslogtreecommitdiff
path: root/m4/strtoll.m4
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2011-04-22 00:33:37 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2011-04-22 00:33:37 -0700
commitaaa935591793937f354024fd094d2630d0399abc (patch)
tree42db7b1a06dd97ab8ae20bbc6a63cd18594db331 /m4/strtoll.m4
parent36009a21cb540401591a4891e05e1c4b32a8c593 (diff)
downloademacs-aaa935591793937f354024fd094d2630d0399abc.tar.gz
Simpler version of strtoumax module.
Diffstat (limited to 'm4/strtoll.m4')
-rw-r--r--m4/strtoll.m425
1 files changed, 0 insertions, 25 deletions
diff --git a/m4/strtoll.m4 b/m4/strtoll.m4
deleted file mode 100644
index fd0a13db1bb..00000000000
--- a/m4/strtoll.m4
+++ /dev/null
@@ -1,25 +0,0 @@
-# strtoll.m4 serial 6
-dnl Copyright (C) 2002, 2004, 2006, 2008-2011 Free Software Foundation, Inc.
-dnl This file is free software; the Free Software Foundation
-dnl gives unlimited permission to copy and/or distribute it,
-dnl with or without modifications, as long as this notice is preserved.
-
-AC_DEFUN([gl_FUNC_STRTOLL],
-[
- AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
- dnl We don't need (and can't compile) the replacement strtoll
- dnl unless the type 'long long int' exists.
- AC_REQUIRE([AC_TYPE_LONG_LONG_INT])
- if test "$ac_cv_type_long_long_int" = yes; then
- AC_REPLACE_FUNCS([strtoll])
- if test $ac_cv_func_strtoll = no; then
- HAVE_STRTOLL=0
- gl_PREREQ_STRTOLL
- fi
- fi
-])
-
-# Prerequisites of lib/strtoll.c.
-AC_DEFUN([gl_PREREQ_STRTOLL], [
- :
-])