diff options
author | midipix <writeonce@midipix.org> | 2025-06-19 05:49:27 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2025-06-19 05:49:27 +0000 |
commit | 339b39c87643eaf20adf0a1c3755906d52408754 (patch) | |
tree | b4da15805b224243f5df7e0446fefb4ac926170b /src/cmds/pe_cmd_strip.c | |
parent | d0914542311cc7f8d14bb2113d802ae24a344eab (diff) | |
download | perk-339b39c87643eaf20adf0a1c3755906d52408754.tar.bz2 perk-339b39c87643eaf20adf0a1c3755906d52408754.tar.xz |
driver: added --cmd=strip support, pe_cmd_strip() stub, and perk-strip symlink.
Diffstat (limited to 'src/cmds/pe_cmd_strip.c')
-rw-r--r-- | src/cmds/pe_cmd_strip.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/cmds/pe_cmd_strip.c b/src/cmds/pe_cmd_strip.c new file mode 100644 index 0000000..10e70d4 --- /dev/null +++ b/src/cmds/pe_cmd_strip.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_strip(const struct pe_driver_ctx * dctx, const char * path) +{ + (void)dctx; + (void)path; + return 0; +} |