Bash-5.3-alpha release

This commit is contained in:
Chet Ramey
2024-04-22 10:33:38 -04:00
parent f3b6bd1945
commit 622d318652
700 changed files with 136534 additions and 96420 deletions
+13 -1
View File
@@ -1,6 +1,6 @@
/* bashtypes.h -- Bash system types. */
/* Copyright (C) 1993-2009 Free Software Foundation, Inc.
/* Copyright (C) 1993-2009,2024 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
@@ -35,6 +35,18 @@
# include <inttypes.h>
#endif
/* Fix PRIdMAX on systems where it's broken. */
#ifdef PRI_MACROS_BROKEN
# undef PRIdMAX
#endif
#ifndef PRIdMAX
# if HAVE_LONG_LONG
# define PRIdMAX "lld"
# else
# define PRIdMAX "ld"
# endif
#endif
#if HAVE_STDINT_H
# include <stdint.h>
#endif