diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/path-concat.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/path-concat.c b/lib/path-concat.c index ce74ed133..54509125c 100644 --- a/lib/path-concat.c +++ b/lib/path-concat.c @@ -33,7 +33,10 @@ char *stpcpy (); BASE in the returned concatenation. */ char * -path_concat (const char *dir, const char *base, char **base_in_result) +path_concat (dir, base, base_in_result) + const char *dir; + const char *base; + char **base_in_result; { char *p; char *p_concat; |