From: Jim Meyering Date: Tue, 1 Oct 1996 01:09:07 +0000 (+0000) Subject: (path_concat): Use K&R style function definition. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b6856f5bd84404dca8658e34435197f5fc5faac;p=pspp (path_concat): Use K&R style function definition. --- diff --git a/lib/path-concat.c b/lib/path-concat.c index ce74ed1334..54509125ca 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;