source: ada-examples/ada_from_c_task/example.ads @ d4c4aba

ada-examples-4-10-branch
Last change on this file since d4c4aba was 8325959, checked in by Joel Sherrill <joel.sherrill@…>, on 07/23/08 at 18:08:05

2008-07-23 Joel Sherrill <joel.sherrill@…>

  • Makefile, ada_from_c.adb, app.c, config.h, example.adb, example.ads: New files. New test to demonstrate C calling Ada.
  • Property mode set to 100644
File size: 321 bytes
RevLine 
[8325959]1--
2--  The license and distribution terms for this file may be
3--  found in the file LICENSE in this distribution or at
4--  http://www.rtems.com/license/LICENSE.
5--
6--  $Id$
7--
8
9package Example is
10  procedure ToBeCalled(
11    iterations : in Integer
12  );
13  pragma export(C, ToBeCalled, "example_ToBeCalled");
14end Example;
Note: See TracBrowser for help on using the repository browser.