summaryrefslogtreecommitdiffstats
path: root/ada_from_c_task/example.ads
blob: 7a5a256bbc2023a3dcd00d50928d17bed08f6cd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--
--  The license and distribution terms for this file may be
--  found in the file LICENSE in this distribution or at
--  http://www.rtems.com/license/LICENSE.
--
--  $Id$
--

package Example is
  procedure ToBeCalled(
    iterations : in Integer
  );
  pragma export(C, ToBeCalled, "example_ToBeCalled");
end Example;