diff options
Diffstat (limited to 'src/cmds/pe_cmd_ranlib.c')
-rw-r--r-- | src/cmds/pe_cmd_ranlib.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/cmds/pe_cmd_ranlib.c b/src/cmds/pe_cmd_ranlib.c new file mode 100644 index 0000000..5d6f078 --- /dev/null +++ b/src/cmds/pe_cmd_ranlib.c @@ -0,0 +1,15 @@ +/***************************************************************/ +/* perk: PE Resource Kit */ +/* Copyright (C) 2015--2025 SysDeer Technologies, LLC */ +/* Released under GPLv2 and GPLv3; see COPYING.PERK. */ +/***************************************************************/ + +#include <perk/perk.h> +#include "perk_driver_impl.h" + +int pe_cmd_ranlib(const struct pe_driver_ctx * dctx, const char * path) +{ + (void)dctx; + (void)path; + return 0; +} |