gcc/ada/
* libgnat/g-sthcso.adb: Suppress warning about unneeded use type
clause.
Protocol : C.int;
Fds : not null access Fd_Pair) return C.int
is
+ -- This use type clause is not required on all platforms
+ -- using this implementation. So we suppress the warning
+ -- for the platforms that already use this type.
+ pragma Warnings (Off, "use clause for type *");
use type C.char_array;
+ pragma Warnings (On, "use clause for type *");
L_Sock, C_Sock, P_Sock : C.int := Failure;
-- Listening socket, client socket and peer socket