diff options
Diffstat (limited to 'gcc/ada/s-osinte-darwin.ads')
-rw-r--r-- | gcc/ada/s-osinte-darwin.ads | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gcc/ada/s-osinte-darwin.ads b/gcc/ada/s-osinte-darwin.ads index fe2a10a3315..ff0480379bc 100644 --- a/gcc/ada/s-osinte-darwin.ads +++ b/gcc/ada/s-osinte-darwin.ads @@ -183,10 +183,7 @@ package System.OS_Interface is type timespec is private; - type clockid_t is private; - - CLOCK_REALTIME : constant clockid_t; - CLOCK_MONOTONIC : constant clockid_t; + type clockid_t is new int; function clock_gettime (clock_id : clockid_t; @@ -524,10 +521,6 @@ private end record; pragma Convention (C, timespec); - type clockid_t is new int; - CLOCK_REALTIME : constant clockid_t := 0; - CLOCK_MONOTONIC : constant clockid_t := CLOCK_REALTIME; - -- -- Darwin specific signal implementation -- |