Changeset 110e1f1 in rtems for c/src/ada-tests/support
- Timestamp:
- Dec 14, 2009, 9:17:59 PM (11 years ago)
- Branches:
- 4.10, 4.11, 5, master
- Children:
- 3a23218
- Parents:
- 221db54
- Location:
- c/src/ada-tests/support
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ada-tests/support/address_io.adb
r221db54 r110e1f1 11 11 -- 12 12 -- 13 -- COPYRIGHT (c) 1989- 1997.13 -- COPYRIGHT (c) 1989-2009. 14 14 -- On-Line Applications Research Corporation (OAR). 15 15 -- … … 21 21 -- 22 22 23 with System;24 23 with System.Storage_Elements; 25 24 with Text_IO; -
c/src/ada-tests/support/init.c
r221db54 r110e1f1 10 10 #include <stdlib.h> 11 11 12 /* 13 * This is the entry point automatically generated by GNAT. 14 */ 15 extern int gnat_main ( int argc, char **argv, char **envp ); 16 12 17 void *POSIX_Init( 13 18 void *argument 14 19 ) 15 20 { 16 extern int gnat_main ( int argc, char **argv, char **envp );17 18 21 (void) gnat_main ( 0, 0, 0 ); 19 22 -
c/src/ada-tests/support/test_support.adb
r221db54 r110e1f1 11 11 -- 12 12 -- 13 -- COPYRIGHT (c) 1989-200 7.13 -- COPYRIGHT (c) 1989-2009. 14 14 -- On-Line Applications Research Corporation (OAR). 15 15 -- … … 22 22 23 23 with Interfaces; use Interfaces; 24 with RTEMS;25 24 with Unsigned32_IO; 26 25 with Status_IO; … … 191 190 Text_IO.Put( C4 ); 192 191 193 if New_Line = Truethen192 if New_Line then 194 193 Text_IO.New_Line; 195 194 end if; -
c/src/ada-tests/support/test_support.ads
r221db54 r110e1f1 11 11 -- 12 12 -- 13 -- COPYRIGHT (c) 1989-200 7.13 -- COPYRIGHT (c) 1989-2009. 14 14 -- On-Line Applications Research Corporation (OAR). 15 15 -- … … 21 21 -- 22 22 23 with Interfaces; use Interfaces;24 23 with RTEMS; 25 with Text_IO;26 24 27 25 package Test_Support is -
c/src/ada-tests/support/time_test_support.adb
r221db54 r110e1f1 11 11 -- 12 12 -- 13 -- COPYRIGHT (c) 1989- 1997.13 -- COPYRIGHT (c) 1989-2009. 14 14 -- On-Line Applications Research Corporation (OAR). 15 15 -- … … 22 22 23 23 with INTERFACES; use INTERFACES; 24 with RTEMS;25 24 with TEXT_IO; 26 25 with UNSIGNED32_IO; -
c/src/ada-tests/support/timer_driver.adb
r221db54 r110e1f1 10 10 -- 11 11 -- 12 -- COPYRIGHT (c) 1989- 1997.12 -- COPYRIGHT (c) 1989-2009. 13 13 -- On-Line Applications Research Corporation (OAR). 14 14 -- … … 20 20 -- 21 21 22 with RTEMS; 23 with Interfaces.C; 22 with Interfaces; 24 23 25 24 package body Timer_Driver is
Note: See TracChangeset
for help on using the changeset viewer.