Recent changes to Ada have produced a new diagnostic:
s-osinte.adb:34:18: warning: unit "Interfaces.C.Extensions"...
which causes a bootstrap fail on Darwin when Ada is enabled.
Fixed thus.
PR ada/114065
gcc/ada/ChangeLog:
* libgnarl/s-osinte__darwin.adb: Add and reference clause
for Interfaces.C, remove clause for Interfaces.C.Extensions.
Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
-- This is a Darwin Threads version of this package
-with Interfaces.C.Extensions;
+with Interfaces.C; use Interfaces.C;
package body System.OS_Interface is
- use Interfaces.C;
------------------------
-- To_Target_Priority --