diff options
Diffstat (limited to 'src/cmds')
-rw-r--r-- | src/cmds/pe_cmd_ar.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/cmds/pe_cmd_ar.c b/src/cmds/pe_cmd_ar.c index 2df578c..e578ca0 100644 --- a/src/cmds/pe_cmd_ar.c +++ b/src/cmds/pe_cmd_ar.c @@ -7,8 +7,17 @@ #include <perk/perk.h> #include "perk_driver_impl.h" -int pe_cmd_ar(const struct pe_driver_ctx * dctx) +int pe_cmd_ar( + const struct pe_driver_ctx * dctx, + uint64_t flags, + const char * posname, + const char * arname, + const char ** units) { (void)dctx; + (void)flags; + (void)posname; + (void)arname; + (void)units; return 0; } |