--- ray/src/common/expandarg.c 1992/11/08 16:23:17 2.2 +++ ray/src/common/expandarg.c 2003/02/25 02:47:21 2.5 @@ -1,22 +1,24 @@ -/* Copyright (c) 1992 Regents of the University of California */ - #ifndef lint -static char SCCSid[] = "$SunId$ LBL"; +static const char RCSid[] = "$Id: expandarg.c,v 2.5 2003/02/25 02:47:21 greg Exp $"; #endif - /* * Get additional command arguments from file or environment. + * + * External symbols declared in standard.h */ +#include "copyright.h" + #include "standard.h" #define MAXARGEXP 512 /* maximum argument expansion */ /* set the following to suit, -1 to disable */ int envexpchr = '$'; /* environment expansion character */ -int filexpchr = '^'; /* file expansion character */ +int filexpchr = '@'; /* file expansion character */ +int expandarg(acp, avp, n) /* expand list at argument n */ int *acp; register char ***avp;