| 1815 | |
| 1816 | |
| 1817 | LIST * builtin_self_path( FRAME * frame, int flags ) |
| 1818 | { |
| 1819 | extern char const * saved_argv0; |
| 1820 | char * p = executable_path( saved_argv0 ); |
| 1821 | if ( p ) |
| 1822 | { |
| 1823 | LIST * const result = list_new( object_new( p ) ); |
| 1824 | free( p ); |
| 1825 | return result; |
| 1826 | } |
| 1827 | return L0; |
| 1828 | } |
| 1829 | |
| 1830 | |
| 1831 | LIST * builtin_makedir( FRAME * frame, int flags ) |
nothing calls this directly
no test coverage detected