Make the ArgArray_Init() function visible to the rest of make.

It will soon be needed for the .SHELL parsing code.
This commit is contained in:
Hartmut Brandt 2005-05-23 13:27:52 +00:00
parent 9fb7e9cad1
commit bb5a85a5d7
2 changed files with 2 additions and 1 deletions

View File

@ -57,7 +57,7 @@ __FBSDID("$FreeBSD$");
* (size + 1) since we need space for the terminating NULL. The
* buffer is set to NULL, since no common buffer is alloated yet.
*/
static void
void
ArgArray_Init(ArgArray *aa)
{

View File

@ -67,6 +67,7 @@ typedef struct ArgArray {
#define STR_ADDSPACE 0x01 /* add a space when Str_Concat'ing */
#define STR_ADDSLASH 0x04 /* add a slash when Str_Concat'ing */
void ArgArray_Init(ArgArray *);
void ArgArray_Done(ArgArray *);
char *str_concat(const char *, const char *, int);