diff options
author | Peter Mikkelsen <peter@pmikkelsen.com> | 2021-07-18 13:08:03 +0000 |
---|---|---|
committer | Peter Mikkelsen <peter@pmikkelsen.com> | 2021-07-18 13:08:03 +0000 |
commit | 18ae80eac7b678d71b13710b978a03863c7e3fd2 (patch) | |
tree | 2becfde8b6567385f922582418849cb062764b11 /module.c | |
parent | 8a1e32e6a8c441f8358bd580c655d5ff48716fa0 (diff) |
Install stdlib.pl and repl.pl into /sys/lib/prolog/
Diffstat (limited to 'module.c')
-rw-r--r-- | module.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8,9 +8,9 @@ void initmodules(void) { - systemmodule = parsemodule("./stdlib.pl"); + systemmodule = parsemodule("/sys/lib/prolog/stdlib.pl"); if(systemmodule == nil){ - print("Can't load ./stdlib.pl\n"); + print("Can't load /sys/lib/prolog/stdlib.pl\n"); exits(nil); } @@ -21,7 +21,7 @@ initmodules(void) } usermodule = addemptymodule(L"user"); - parsemodule("./repl.pl"); + parsemodule("/sys/lib/prolog/repl.pl"); } Module * |