diff options
author | Piotr Trojanek <trojanek@adacore.com> | 2024-08-27 12:45:07 +0200 |
---|---|---|
committer | Marc Poulhiès <dkm@gcc.gnu.org> | 2024-09-10 09:44:10 +0200 |
commit | c8352514cd0903d00e0e4df106bd921897f90e63 (patch) | |
tree | b9e3be4bda9b14ff0f4dfe35500e1ce6fb1aa403 /gcc | |
parent | 3d031cc4465a32bbc82c96e3e07894eb6dc4d3ec (diff) | |
download | gcc-c8352514cd0903d00e0e4df106bd921897f90e63.zip gcc-c8352514cd0903d00e0e4df106bd921897f90e63.tar.gz gcc-c8352514cd0903d00e0e4df106bd921897f90e63.tar.bz2 |
ada: Whitespace cleanup in declaration of calendar-related routines
Code cleanup.
gcc/ada/
* libgnat/s-os_lib.ads: Remove extra whitespace.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/libgnat/s-os_lib.ads | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/ada/libgnat/s-os_lib.ads b/gcc/ada/libgnat/s-os_lib.ads index 46e11f7..54e7205 100644 --- a/gcc/ada/libgnat/s-os_lib.ads +++ b/gcc/ada/libgnat/s-os_lib.ads @@ -130,12 +130,12 @@ package System.OS_Lib is -- Returns current local time in the form YYYY-MM-DD HH:MM:SS. The result -- has bounds 1 .. 19. - function GM_Year (Date : OS_Time) return Year_Type; - function GM_Month (Date : OS_Time) return Month_Type; - function GM_Day (Date : OS_Time) return Day_Type; - function GM_Hour (Date : OS_Time) return Hour_Type; - function GM_Minute (Date : OS_Time) return Minute_Type; - function GM_Second (Date : OS_Time) return Second_Type; + function GM_Year (Date : OS_Time) return Year_Type; + function GM_Month (Date : OS_Time) return Month_Type; + function GM_Day (Date : OS_Time) return Day_Type; + function GM_Hour (Date : OS_Time) return Hour_Type; + function GM_Minute (Date : OS_Time) return Minute_Type; + function GM_Second (Date : OS_Time) return Second_Type; -- Functions to extract information from OS_Time value in GMT form procedure GM_Split |