ladybird/Userland/modload.cpp
Andreas Kling 86c61218a7 modload: Take the module-to-load as a command-line argument
Instead of hard-coding /mod/TestModule.o :^)
2019-11-29 21:19:23 +01:00

19 lines
341 B
C++

#include <serenity.h>
#include <string.h>
int main(int argc, char** argv)
{
if (argc != 2) {
printf("usage: %s <module.o>\n", argv[0]);
return 0;
}
const char* path = argv[1];
int rc = module_load(path, strlen(path));
if (rc < 0) {
perror("module_load");
return 1;
}
return 0;
}