23 lines
839 B
Diff
23 lines
839 B
Diff
|
From 4b28b8356c7ecf9375a2c07ac6be226a5693f8d2 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?S=C3=B6ren=20Tempel?= <soeren+git@soeren-tempel.net>
|
||
|
Date: Tue, 19 Jul 2022 01:05:11 +0200
|
||
|
Subject: [PATCH] libgnat: time_t is always 64-bit on musl libc
|
||
|
|
||
|
---
|
||
|
gcc/ada/libgnat/s-parame.ads | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/gcc/ada/libgnat/s-parame.ads b/gcc/ada/libgnat/s-parame.ads
|
||
|
index 4b8111402ba..b670e78c53b 100644
|
||
|
--- a/gcc/ada/libgnat/s-parame.ads
|
||
|
+++ b/gcc/ada/libgnat/s-parame.ads
|
||
|
@@ -102,7 +102,7 @@ package System.Parameters is
|
||
|
-- Characteristics of time_t type --
|
||
|
------------------------------------
|
||
|
|
||
|
- time_t_bits : constant := Long_Integer'Size;
|
||
|
+ time_t_bits : constant := Long_Long_Integer'Size;
|
||
|
-- Number of bits in type time_t
|
||
|
|
||
|
----------------------------------------------
|