clean up import.
This commit is contained in:
parent
2fa6fe01b2
commit
eb7eaeab05
|
@ -1,19 +1,31 @@
|
|||
# @(#)Makefile 8.48 (Berkeley) 8/16/94
|
||||
# @(#)Makefile 8.51 (Berkeley) 8/17/94
|
||||
#
|
||||
# This Makefile is ONLY correct for 4.4BSD style source trees. If you're
|
||||
# not using a system with that setup, it's not going to work. Read the
|
||||
# files ../README and ../PORT/README for information on building nvi for
|
||||
# other systems.
|
||||
|
||||
PROG= vi
|
||||
VI= vi
|
||||
EX= ex
|
||||
VIEW= view
|
||||
PROG= ${VI}
|
||||
LINKS= ${BINDIR}/${VI} ${BINDIR}/${EX} ${BINDIR}/${VI} ${BINDIR}/${VIEW}
|
||||
|
||||
#CFLAGS=-g -DDEBUG
|
||||
#CFLAGS+=-pg
|
||||
CFLAGS+=-I. -I${.CURDIR}
|
||||
#STRIP=
|
||||
#LDADD+=-pg
|
||||
DPADD+= ${LIBCURSES} ${LIBTERM} ${LIBUTIL}
|
||||
LDADD+= -lcurses -ltermlib -lutil
|
||||
|
||||
.PATH: ${.CURDIR}/../common ${.CURDIR}/../ex ${.CURDIR}/../sex \
|
||||
${.CURDIR}/../vi ${.CURDIR}/../svi ${.CURDIR}/../xaw \
|
||||
${.CURDIR}/../USD.doc/vi.man
|
||||
|
||||
SPECHDR=compat.h excmd.h options.h
|
||||
|
||||
CLEANFILES+=${SPECHDR} ${EX} vi.0
|
||||
|
||||
# General sources.
|
||||
SRCS= cut.c delete.c exf.c line.c log.c main.c mark.c msg.c options.c \
|
||||
options_f.c put.c screen.c search.c seq.c signal.c recover.c \
|
||||
|
@ -48,28 +60,21 @@ SRCS+= svi_confirm.c svi_curses.c svi_ex.c svi_get.c svi_line.c \
|
|||
# Athena widget set screen source.
|
||||
SRCS+= xaw_screen.c
|
||||
|
||||
#LDADD+=-pg
|
||||
DPADD+= ${LIBCURSES} ${LIBTERM} ${LIBUTIL}
|
||||
LDADD+= -lcurses -ltermlib -lutil
|
||||
SPECHDR=compat.h excmd.h options.h
|
||||
CLEANFILES+=${SPECHDR}
|
||||
LINKS= ${BINDIR}/vi ${BINDIR}/ex ${BINDIR}/vi ${BINDIR}/view
|
||||
|
||||
${PROG}: ${SPECHDR}
|
||||
${VI}: ${SPECHDR}
|
||||
|
||||
compat.h:
|
||||
:> compat.h
|
||||
|
||||
options.h: options.h.stub options.c options.awk
|
||||
rm -f options.h
|
||||
cat ${.CURDIR}/options.h.stub > options.h
|
||||
awk -f ${.CURDIR}/options.awk ${.CURDIR}/options.c >> options.h
|
||||
|
||||
excmd.h: excmd.h.stub excmd.c excmd.awk
|
||||
rm -f excmd.h
|
||||
cat ${.CURDIR}/../ex/excmd.h.stub > excmd.h
|
||||
awk -f ${.CURDIR}/../ex/excmd.awk ${.CURDIR}/../ex/excmd.c >> excmd.h
|
||||
|
||||
options.h: options.h.stub options.c options.awk
|
||||
rm -f options.h
|
||||
cat ${.CURDIR}/options.h.stub > options.h
|
||||
awk -f ${.CURDIR}/options.awk ${.CURDIR}/options.c >> options.h
|
||||
|
||||
tags::
|
||||
-(cd ${.CURDIR} && rm -f tags && \
|
||||
ctags ../common/*.[ch] ../common/*.stub ../ex/*.[ch] ../ex/*.stub \
|
||||
|
@ -86,9 +91,6 @@ warn:: ${SRCS}
|
|||
-e "/warning: comparison is always 1 due /d") > \
|
||||
${.CURDIR}/WARN.OUT
|
||||
|
||||
MAN= ${.CURDIR}/../USD.doc/vi.man
|
||||
REF= ${.CURDIR}/../USD.doc/vi.ref
|
||||
|
||||
.include "../../Makefile.inc"
|
||||
.include <bsd.prog.mk>
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex.c 8.156 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex.c 8.157 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_abbrev.c 8.13 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_abbrev.c 8.14 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_append.c 8.23 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_append.c 8.24 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_args.c 8.28 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_args.c 8.29 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_argv.c 8.37 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_argv.c 8.38 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_at.c 8.26 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_at.c 8.27 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_bang.c 8.34 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_bang.c 8.35 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_cd.c 8.17 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_cd.c 8.18 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/param.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_delete.c 8.13 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_delete.c 8.14 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_digraph.c 8.7 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_digraph.c 8.8 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#ifndef NO_DIGRAPH
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_display.c 8.22 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_display.c 8.23 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_edit.c 8.19 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_edit.c 8.20 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_equal.c 8.7 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_equal.c 8.8 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_exit.c 8.14 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_exit.c 8.15 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_file.c 8.11 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_file.c 8.12 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_global.c 8.42 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_global.c 8.43 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_init.c 8.17 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_init.c 8.18 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_join.c 8.13 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_join.c 8.14 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_map.c 8.18 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_map.c 8.19 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_mark.c 8.7 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_mark.c 8.8 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_mkexrc.c 8.13 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_mkexrc.c 8.14 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_move.c 8.18 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_move.c 8.19 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_open.c 8.5 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_open.c 8.6 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_preserve.c 8.13 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_preserve.c 8.14 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_print.c 8.15 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_print.c 8.16 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_put.c 8.7 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_put.c 8.8 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_read.c 8.40 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_read.c 8.41 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_screen.c 8.14 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_screen.c 8.15 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_script.c 8.18 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_script.c 8.19 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_set.c 8.5 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_set.c 8.6 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_shell.c 8.25 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_shell.c 8.26 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/param.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_shift.c 8.15 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_shift.c 8.16 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_source.c 8.6 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_source.c 8.7 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_stop.c 8.8 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_stop.c 8.9 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_subst.c 8.58 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_subst.c 8.59 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_tag.c 8.44 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_tag.c 8.45 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/param.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_undo.c 8.8 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_undo.c 8.9 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_usage.c 8.20 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_usage.c 8.21 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_util.c 8.13 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_util.c 8.14 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_version.c 8.64 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_version.c 8.66 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
@ -62,10 +62,10 @@ ex_version(sp, ep, cmdp)
|
|||
EXF *ep;
|
||||
EXCMDARG *cmdp;
|
||||
{
|
||||
static const time_t then = 777130317;
|
||||
static const time_t then = 777148668;
|
||||
|
||||
(void)ex_printf(EXCOOKIE,
|
||||
"Version 1.33, %sThe CSRG, University of California, Berkeley.\n",
|
||||
"Version 1.34, %sThe CSRG, University of California, Berkeley.\n",
|
||||
ctime(&then));
|
||||
return (0);
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_visual.c 8.14 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_visual.c 8.15 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_write.c 8.37 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_write.c 8.38 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_yank.c 8.6 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_yank.c 8.7 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)ex_z.c 8.7 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)ex_z.c 8.8 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)excmd.c 8.59 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)excmd.c 8.60 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)filter.c 8.44 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)filter.c 8.45 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)sex_confirm.c 8.8 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)sex_confirm.c 8.9 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)sex_get.c 8.38 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)sex_get.c 8.39 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)sex_refresh.c 8.15 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)sex_refresh.c 8.16 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)sex_screen.c 8.48 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)sex_screen.c 8.49 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)sex_term.c 8.39 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)sex_term.c 8.40 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)sex_util.c 8.16 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)sex_util.c 8.17 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)svi_confirm.c 8.9 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)svi_confirm.c 8.10 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)svi_ex.c 8.55 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)svi_ex.c 8.56 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)svi_get.c 8.26 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)svi_get.c 8.27 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)svi_line.c 8.26 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)svi_line.c 8.27 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)svi_refresh.c 8.61 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)svi_refresh.c 8.62 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)svi_relative.c 8.17 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)svi_relative.c 8.18 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)svi_screen.c 8.93 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)svi_screen.c 8.94 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)svi_smap.c 8.47 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)svi_smap.c 8.48 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)svi_split.c 8.48 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)svi_split.c 8.49 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)svi_util.c 8.54 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)svi_util.c 8.55 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)getc.c 8.10 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)getc.c 8.11 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_ch.c 8.14 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_ch.c 8.15 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_delete.c 8.15 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_delete.c 8.16 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_ex.c 8.11 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_ex.c 8.12 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_increment.c 8.10 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_increment.c 8.11 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_init.c 8.27 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_init.c 8.28 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_left.c 8.10 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_left.c 8.11 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_mark.c 8.9 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_mark.c 8.10 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_match.c 8.15 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_match.c 8.16 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_ntext.c 8.121 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_ntext.c 8.122 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_paragraph.c 8.19 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_paragraph.c 8.20 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_put.c 8.10 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_put.c 8.11 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_redraw.c 8.5 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_redraw.c 8.6 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_replace.c 8.19 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_replace.c 8.20 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_right.c 8.9 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_right.c 8.10 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_screen.c 8.13 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_screen.c 8.14 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_scroll.c 8.21 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_scroll.c 8.22 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_search.c 8.33 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_search.c 8.34 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_section.c 8.11 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_section.c 8.12 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_sentence.c 8.16 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_sentence.c 8.17 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_status.c 8.17 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_status.c 8.18 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/param.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_stop.c 8.8 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_stop.c 8.9 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_text.c 8.42 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_text.c 8.43 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_ulcase.c 8.9 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_ulcase.c 8.10 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_undo.c 8.11 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_undo.c 8.12 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_util.c 8.11 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_util.c 8.12 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_word.c 8.22 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_word.c 8.23 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_xchar.c 8.9 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_xchar.c 8.10 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_yank.c 8.15 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_yank.c 8.16 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)v_z.c 8.17 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)v_z.c 8.18 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)vcmd.c 8.40 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)vcmd.c 8.41 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)vi.c 8.90 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)vi.c 8.91 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char sccsid[] = "@(#)xaw_screen.c 8.7 (Berkeley) 8/17/94";
|
||||
static char sccsid[] = "@(#)xaw_screen.c 8.8 (Berkeley) 8/17/94";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/queue.h>
|
||||
|
|
Loading…
Reference in New Issue