diff options
author | midipix <writeonce@midipix.org> | 2016-01-10 12:54:33 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-10 23:35:36 -0500 |
commit | 7d4640f3f18eef2bd1306fc8f5e39480f9086b51 (patch) | |
tree | 449b267666973e969c7b2f89ac5636857fca3c28 /include | |
parent | 92345cf034853e07a56c356484adbdf10503c27d (diff) | |
download | perk-7d4640f3f18eef2bd1306fc8f5e39480f9086b51.tar.bz2 perk-7d4640f3f18eef2bd1306fc8f5e39480f9086b51.tar.xz |
argv.h: main(): fix signatures.
Diffstat (limited to 'include')
-rw-r--r-- | include/perk/perk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/perk/perk.h b/include/perk/perk.h index 451b37e..3dcc86b 100644 --- a/include/perk/perk.h +++ b/include/perk/perk.h @@ -150,7 +150,7 @@ struct pe_unit_ctx { }; /* driver api */ -perk_api int pe_get_driver_ctx (const char ** argv, const char ** envp, uint32_t flags, struct pe_driver_ctx **); +perk_api int pe_get_driver_ctx (char ** argv, char ** envp, uint32_t flags, struct pe_driver_ctx **); perk_api void pe_free_driver_ctx (struct pe_driver_ctx *); perk_api int pe_get_unit_ctx (const struct pe_driver_ctx *, const char * path, struct pe_unit_ctx **); |