aboutsummaryrefslogtreecommitdiff
path: root/hereiam/here_i_am.ads
blob: 367ac573ae842dda6761bbb1dbae4b499930c664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25


--  Programmed by Jedidiah Barber
--  Released into the public domain


package Here_I_Am is


    Where_Is_Error : exception;


    --  Provides the full name and path of the running executable
    function Executable
        return String;


    --  Provides the full name and path of the running library
    function Module
        return String;


end Here_I_Am;