1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-26 02:30:35 +02:00

(path_concat): Use K&R style function definition.

This commit is contained in:
Jim Meyering
1996-10-01 01:09:07 +00:00
parent 0c7040607d
commit 31053908a0
+4 -1
View File
@@ -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;