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

4.104.114.84.95
Last change on this file since f69283e2 was 93bd518, checked in by Joel Sherrill <joel.sherrill@…>, on 06/03/97 at 18:07:51

new files

  • Property mode set to 100644
File size: 693 bytes
Line 
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--  Copyright assigned to U.S. Government, 1994.
16--
17--  The license and distribution terms for this file may in
18--  the file LICENSE in this distribution or at
19--  http://www.OARcorp.com/rtems/license.html.
20--
21--  $Id$
22--
23
24with System;
25
26package Address_IO is
27
28   procedure Put (
29      Item  : in     System.Address;
30      Width : in     Natural := 8;
31      Base  : in     Natural := 16
32   );
33
34end Address_IO;
35
Note: See TracBrowser for help on using the repository browser.