aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/str.h
diff options
context:
space:
mode:
authorHartmut Brandt <harti@FreeBSD.org>2005-05-23 13:27:52 +0000
committerHartmut Brandt <harti@FreeBSD.org>2005-05-23 13:27:52 +0000
commitbb5a85a5d7cebbdd76230c23e0cc32e59d441e62 (patch)
tree7ef514174f643805a961d11bc34a86a92364f6a4 /usr.bin/make/str.h
parent9fb7e9cad12e8ece29197519b307070dd2111ff5 (diff)
downloadsrc-bb5a85a5d7cebbdd76230c23e0cc32e59d441e62.tar.gz
src-bb5a85a5d7cebbdd76230c23e0cc32e59d441e62.zip
Make the ArgArray_Init() function visible to the rest of make.
It will soon be needed for the .SHELL parsing code.
Notes
Notes: svn path=/head/; revision=146543
Diffstat (limited to 'usr.bin/make/str.h')
-rw-r--r--usr.bin/make/str.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/make/str.h b/usr.bin/make/str.h
index 8f74f767b13c..e8cf10cc648d 100644
--- a/usr.bin/make/str.h
+++ b/usr.bin/make/str.h
@@ -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);