go to 0.81
[nvi.git] / ex / ex_version.c
blob80867872ad43e9b6b26898bce56a924779fde7b8
1 /*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * %sccs.include.redist.c%
6 */
8 #ifndef lint
9 static char sccsid[] = "$Id: ex_version.c,v 8.16 1993/11/06 12:14:30 bostic Exp $ (Berkeley) $Date: 1993/11/06 12:14:30 $";
10 #endif /* not lint */
12 #include <sys/types.h>
14 #include "vi.h"
15 #include "excmd.h"
18 * ex_version -- :version
19 * Display the program version.
21 int
22 ex_version(sp, ep, cmdp)
23 SCR *sp;
24 EXF *ep;
25 EXCMDARG *cmdp;
27 (void)ex_printf(EXCOOKIE,
28 "Version 0.81 (The CSRG, U.C. Berkeley.), %s\n", "$Date: 1993/11/06 12:14:30 $");
29 return (0);