diff options
author | Jim Meyering <jim@meyering.net> | 1996-10-01 01:09:07 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-10-01 01:09:07 +0000 |
commit | 31053908a0a8a392e4f7880dbdeb283ca9140b82 (patch) | |
tree | 93412222ee7a52f50e5f4475932e2c3e2da50e8d /lib | |
parent | 0c7040607deb60c1a64812b59f156af81d11aad9 (diff) | |
download | coreutils-31053908a0a8a392e4f7880dbdeb283ca9140b82.tar.xz |
(path_concat): Use K&R style function definition.
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; |