diff options
Diffstat (limited to 'src/cmds/pe_cmd_nm.c')
-rw-r--r-- | src/cmds/pe_cmd_nm.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/cmds/pe_cmd_nm.c b/src/cmds/pe_cmd_nm.c new file mode 100644 index 0000000..87736ea --- /dev/null +++ b/src/cmds/pe_cmd_nm.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_nm(const struct pe_driver_ctx * dctx, const char * path) +{ + (void)dctx; + (void)path; + return 0; +} |