summaryrefslogtreecommitdiff
path: root/shell/commands.ads
diff options
context:
space:
mode:
Diffstat (limited to 'shell/commands.ads')
-rw-r--r--shell/commands.ads13
1 files changed, 10 insertions, 3 deletions
diff --git a/shell/commands.ads b/shell/commands.ads
index ce47730..de023c7 100644
--- a/shell/commands.ads
+++ b/shell/commands.ads
@@ -2,9 +2,10 @@
-- $Id$
--
-with Interfaces.C; use Interfaces.C;
-with Interfaces.C.Strings; use Interfaces.C.Strings;
-with RTEMS_Shell; use RTEMS_Shell;
+with RTEMS_Shell; use RTEMS_Shell;
+with Command_Line_Arguments; use Command_Line_Arguments;
+with Interfaces.C; use Interfaces.C;
+with Interfaces.C.Strings; use Interfaces.C.Strings;
package Commands is
@@ -18,4 +19,10 @@ package Commands is
return int;
pragma Convention (C, Command_Test_Arguments);
+ function Command_Getopt_R
+ (ArgC : Argument_Count_Type;
+ ArgV : Argument_Vector_Type)
+ return int;
+ pragma Convention (C, Command_Getopt_R);
+
end Commands;