diff options
Diffstat (limited to 'bin/csh/parse.c')
-rw-r--r-- | bin/csh/parse.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/bin/csh/parse.c b/bin/csh/parse.c index 76f5911..5d0632e 100644 --- a/bin/csh/parse.c +++ b/bin/csh/parse.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: parse.c,v 1.2 1994/09/24 02:54:11 davidg Exp $ */ #ifndef lint @@ -52,19 +52,19 @@ static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 5/31/93"; static void asyntax __P((struct wordent *, struct wordent *)); static void asyn0 __P((struct wordent *, struct wordent *)); static void asyn3 __P((struct wordent *, struct wordent *)); -static struct wordent +static struct wordent *freenod __P((struct wordent *, struct wordent *)); -static struct command +static struct command *syn0 __P((struct wordent *, struct wordent *, int)); -static struct command +static struct command *syn1 __P((struct wordent *, struct wordent *, int)); -static struct command +static struct command *syn1a __P((struct wordent *, struct wordent *, int)); -static struct command +static struct command *syn1b __P((struct wordent *, struct wordent *, int)); -static struct command +static struct command *syn2 __P((struct wordent *, struct wordent *, int)); -static struct command +static struct command *syn3 __P((struct wordent *, struct wordent *, int)); #define ALEFT 21 /* max of 20 alias expansions */ |