source: rtems/c/src/ada-tests/support/address_io.ads @ f619250

4.115
Last change on this file since f619250 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 627 bytes
RevLine 
[93bd518]1--
2--  ADDRESS_IO / SPECIFICATION
3--
4--  DESCRIPTION:
5--
6--  This package instantiates the IO routines necessary to
7--  perform IO on data of the type System.Address.
8--
9--  DEPENDENCIES:
10--
11-- 
12--
13--  COPYRIGHT (c) 1989-1997.
14--  On-Line Applications Research Corporation (OAR).
15--
16--  The license and distribution terms for this file may in
17--  the file LICENSE in this distribution or at
[35e4691]18--  http://www.rtems.com/license/LICENSE.
[93bd518]19--
20
21with System;
22
23package Address_IO is
24
25   procedure Put (
26      Item  : in     System.Address;
27      Width : in     Natural := 8;
28      Base  : in     Natural := 16
29   );
30
31end Address_IO;
32
Note: See TracBrowser for help on using the repository browser.