summaryrefslogtreecommitdiffstats
path: root/gl/limits.in.h
diff options
context:
space:
mode:
Diffstat (limited to 'gl/limits.in.h')
-rw-r--r--gl/limits.in.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gl/limits.in.h b/gl/limits.in.h
index c33c59e1..66bd63ee 100644
--- a/gl/limits.in.h
+++ b/gl/limits.in.h
@@ -1,6 +1,6 @@
1/* A GNU-like <limits.h>. 1/* A GNU-like <limits.h>.
2 2
3 Copyright 2016-2025 Free Software Foundation, Inc. 3 Copyright 2016-2026 Free Software Foundation, Inc.
4 4
5 This file is free software: you can redistribute it and/or modify 5 This file is free software: you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as 6 it under the terms of the GNU Lesser General Public License as
@@ -47,7 +47,7 @@
47#ifndef LLONG_MIN 47#ifndef LLONG_MIN
48# if defined LONG_LONG_MIN /* HP-UX 11.31 */ 48# if defined LONG_LONG_MIN /* HP-UX 11.31 */
49# define LLONG_MIN LONG_LONG_MIN 49# define LLONG_MIN LONG_LONG_MIN
50# elif defined LONGLONG_MIN /* IRIX 6.5 */ 50# elif defined LONGLONG_MIN /* AIX, BeOS */
51# define LLONG_MIN LONGLONG_MIN 51# define LLONG_MIN LONGLONG_MIN
52# elif defined __GNUC__ 52# elif defined __GNUC__
53# define LLONG_MIN (- __LONG_LONG_MAX__ - 1LL) 53# define LLONG_MIN (- __LONG_LONG_MAX__ - 1LL)
@@ -56,7 +56,7 @@
56#ifndef LLONG_MAX 56#ifndef LLONG_MAX
57# if defined LONG_LONG_MAX /* HP-UX 11.31 */ 57# if defined LONG_LONG_MAX /* HP-UX 11.31 */
58# define LLONG_MAX LONG_LONG_MAX 58# define LLONG_MAX LONG_LONG_MAX
59# elif defined LONGLONG_MAX /* IRIX 6.5 */ 59# elif defined LONGLONG_MAX /* AIX, BeOS */
60# define LLONG_MAX LONGLONG_MAX 60# define LLONG_MAX LONGLONG_MAX
61# elif defined __GNUC__ 61# elif defined __GNUC__
62# define LLONG_MAX __LONG_LONG_MAX__ 62# define LLONG_MAX __LONG_LONG_MAX__
@@ -65,7 +65,7 @@
65#ifndef ULLONG_MAX 65#ifndef ULLONG_MAX
66# if defined ULONG_LONG_MAX /* HP-UX 11.31 */ 66# if defined ULONG_LONG_MAX /* HP-UX 11.31 */
67# define ULLONG_MAX ULONG_LONG_MAX 67# define ULLONG_MAX ULONG_LONG_MAX
68# elif defined ULONGLONG_MAX /* IRIX 6.5 */ 68# elif defined ULONGLONG_MAX /* AIX, BeOS */
69# define ULLONG_MAX ULONGLONG_MAX 69# define ULLONG_MAX ULONGLONG_MAX
70# elif defined __GNUC__ 70# elif defined __GNUC__
71# define ULLONG_MAX (__LONG_LONG_MAX__ * 2ULL + 1ULL) 71# define ULLONG_MAX (__LONG_LONG_MAX__ * 2ULL + 1ULL)