diff options
Diffstat (limited to 'src/p_args_next.h')
-rw-r--r-- | src/p_args_next.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/p_args_next.h b/src/p_args_next.h index 22d06a9..826d3df 100644 --- a/src/p_args_next.h +++ b/src/p_args_next.h @@ -13,11 +13,12 @@ #ifndef P_ARGS_NEXT_H # define P_ARGS_NEXT_H +# include <stddef.h> unsigned short p_dup_words(char *words[], - const char word[], - const unsigned short argc, - const size_t start[]); -void p_del_alloced_words(char *words[], unsigned short to_del); + const char word[], + const unsigned short argc, + const size_t start[]); +void p_del_alloced_words(char *words[], unsigned short to_del); #endif |