1*36132Sbostic /* 2*36132Sbostic * Copyright (c) 1988 The Regents of the University of California. 3*36132Sbostic * All rights reserved. 4*36132Sbostic * 5*36132Sbostic * Redistribution and use in source and binary forms are permitted 6*36132Sbostic * provided that the above copyright notice and this paragraph are 7*36132Sbostic * duplicated in all such forms and that any documentation, 8*36132Sbostic * advertising materials, and other materials related to such 9*36132Sbostic * distribution and use acknowledge that the software was developed 10*36132Sbostic * by the University of California, Berkeley. The name of the 11*36132Sbostic * University may not be used to endorse or promote products derived 12*36132Sbostic * from this software without specific prior written permission. 13*36132Sbostic * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 14*36132Sbostic * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 15*36132Sbostic * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. 16*36132Sbostic */ 17*36132Sbostic 18*36132Sbostic #ifndef lint 19*36132Sbostic char copyright[] = 20*36132Sbostic "@(#) Copyright (c) 1988 The Regents of the University of California.\n\ 21*36132Sbostic All rights reserved.\n"; 22*36132Sbostic #endif /* not lint */ 23*36132Sbostic 24*36132Sbostic #ifndef lint 25*36132Sbostic static char sccsid[] = "@(#)vlp.c 5.1 (Berkeley) 10/25/88"; 26*36132Sbostic #endif /* not lint */ 27*36132Sbostic 28*36132Sbostic #include <stdio.h> 29*36132Sbostic 30*36132Sbostic main() 31*36132Sbostic { 32*36132Sbostic fputs("vlp: vlp has not been ported to the tahoe.\n", stderr); 33*36132Sbostic } 34