xref: /original-bsd/old/lisp/vlp/vlp.tahoe/vlp.c (revision 7c7c9d58)
1 /*-
2  * Copyright (c) 1988 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 char copyright[] =
10 "@(#) Copyright (c) 1988 The Regents of the University of California.\n\
11  All rights reserved.\n";
12 #endif /* not lint */
13 
14 #ifndef lint
15 static char sccsid[] = "@(#)vlp.c	5.2 (Berkeley) 07/01/91";
16 #endif /* not lint */
17 
18 #include <stdio.h>
19 
20 main()
21 {
22 	fputs("vlp: vlp has not been ported to the tahoe.\n", stderr);
23 }
24