#!/bin/sh
IXBIN=/usr/local/lib/icon/iconx                                               
IXLCL=`echo $0 | sed 's=[^/]*$=iconx='`

[ -n "$ICONX" ] && exec "$ICONX" $0 ${1+"$@"}
[ -x "$IXLCL" ] && exec "$IXLCL" $0 ${1+"$@"}
[ -x "$IXBIN" ] && exec "$IXBIN" $0 ${1+"$@"}
exec iconx $0 ${1+"$@"}

[executable Icon binary follows]
      

 q      x  |  |  |      L      I9.0.00/32 H#?7           -.R/.    h#k6      <   ,   ,                            :   b   C      T      b   =       N   C      T      b   =       N   C   0   T      M   -   <   M       j   b   =      N   C   0   T      M   <      M         b   =      N   C      T      b   =       N   C      U   E   S       T      b   =       b      F   U   U   E   S       M         b      N   T      M   
      S       M   #      S       M      
  b   =      N   5   N   E   b   D                                                                                4   H                          $     ,  b   C   @   E   S       T      M      1  <   L   b   =      b      N   C     b   >      b   ,   C   H   T      E   T      3   b   =      <      b      b   =      N   C   4   T      T      3   b   =      b   =      N   E   S      T      E   T      3   `b   =      <      b      b   =      b      b   7   N   C      U   T      E   E   S       M      1  M      7  M      1  M   >   N  M      1  M        M      1  E   M        S      b      M      1  S       b   A      b      b   =      F   5   N   C      U   T      M        E   E   M         M   E     M   E     M   G   I  M   D     M         M   D     M   F     M   >   b  M         M   E     M   '     M         b   A   
   b      b   =      F   5   N   C       T      S       b   =      N   C   $   T      M      1  b   =      N   C   0   T      M        b   >   =   b   =      N   C   $   T      M      1  b   =      N   C       T      S       b   =      N   C      C      E   b   G   D   N   E   b   D                                                                      $      )       .   0     D    
 d   ! 	    " 	    $ 	    & 	 $  (  0  (  \  )    *    ,  L  /    2    2    4    4    5    5    5 
 $  6  0  6 
 h  7  |  7    7    7    4  4  C  P  :  \  :  d  :  @  H  L  H  T  H    W 	   X 	   Y #   Y 	   Z 	 <  [ 	 `  ]  t  ^  main header write function repl tab upto many gftrace.icn s procedure _func(a[]); _func:=proc("proc",0);  proc:=_proc; return _func!a; end procedure _proc(a[]); static p; initial p:=_func("proc",0);  suspend p!a; end proc procedure  (a[]); static p; initial p:=_func(" ",0); suspend p!a; end divider date # ,   #	File:     ftrace.icn #	Subject:  Procedures for tracing calls to built-in functions #	Author:   Gregg M. Townsend #	Date:      #       These procedures, when linked with an Icon program, cause calls of built-in functions to be traced (along with calls of user procedures) when &trace is nonzero.  This is accomplished by interposing a level of Icon procedures between the user program and the built-in functions.    In the trace output, function arguments are shown as a list.  The very first function call produces two extra trace lines showing a call to "_func".  Calls to "proc" are reported as calls to "_proc".    If the user program overloads any built-in function, linking fails due to an "inconsistent redeclaration". #  Generated under:   