mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-30 08:59:56 +02:00
Bash-5.3-alpha release
This commit is contained in:
+13
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user