Clean up some experimental cruft in pipeline.adb

This commit is contained in:
R. Tyler Croy 2016-01-10 12:25:38 -08:00
parent e75ce27106
commit 79937b68a1
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 2 additions and 10 deletions

View File

@ -2,22 +2,16 @@
-- Pipeline demo with nanomsg
--
with Ada.Characters.Latin_1;
with Ada.Command_Line;
with Ada.Text_IO;
with Interfaces.C,
Interfaces.C.Strings;
with System,
System.Address_To_Access_Conversions,
System.Address_Image;
use Ada.Text_IO;
with System;
with nanomsg_nn_h;
procedure Pipeline is
pragma Linker_Options ("-lnanomsg");
use Ada.Text_IO;
use nanomsg_nn_h;
use Interfaces.C,
Interfaces.C.Strings;
@ -54,6 +48,4 @@ begin
Status := nn_freemsg (Buf);
end loop;
end;
Ada.Command_Line.Set_Exit_Status (0);
end Pipeline;