155473Sbostic /*- 255473Sbostic * Copyright (c) 1992 The Regents of the University of California. 355473Sbostic * All rights reserved. 455473Sbostic * 5*56121Selan * Redistribution and use in source and binary forms, with or without 6*56121Selan * modification, are permitted provided that the following conditions 7*56121Selan * are met: 8*56121Selan * 1. Redistributions of source code must retain the above copyright 9*56121Selan * notice, this list of conditions and the following disclaimer. 10*56121Selan * 2. Redistributions in binary form must reproduce the above copyright 11*56121Selan * notice, this list of conditions and the following disclaimer in the 12*56121Selan * documentation and/or other materials provided with the distribution. 13*56121Selan * 3. All advertising materials mentioning features or use of this software 14*56121Selan * must display the following acknowledgement: 15*56121Selan * This product includes software developed by the University of 16*56121Selan * California, Berkeley and its contributors. 17*56121Selan * 4. Neither the name of the University nor the names of its contributors 18*56121Selan * may be used to endorse or promote products derived from this software 19*56121Selan * without specific prior written permission. 2055473Sbostic * 21*56121Selan * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 22*56121Selan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23*56121Selan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24*56121Selan * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 25*56121Selan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26*56121Selan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27*56121Selan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28*56121Selan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29*56121Selan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30*56121Selan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31*56121Selan * SUCH DAMAGE. 32*56121Selan * 33*56121Selan * @(#)extern.h 5.3 (Berkeley) 8/6/92 3455473Sbostic */ 3555473Sbostic 36*56121Selan #include <sys/cdefs.h> 37*56121Selan 38*56121Selan 39*56121Selan __BEGIN_DECLS 4055473Sbostic void clean __P((int, char **)); 4155473Sbostic void disable __P((int, char **)); 42*56121Selan void doabort __P((int, char **)); 4355473Sbostic void down __P((int, char **)); 4455473Sbostic void enable __P((int, char **)); 4555473Sbostic void help __P((int, char **)); 4655473Sbostic void quit __P((int, char **)); 4755473Sbostic void restart __P((int, char **)); 4855473Sbostic void start __P((int, char **)); 4955473Sbostic void status __P((int, char **)); 5055473Sbostic void stop __P((int, char **)); 5155473Sbostic void topq __P((int, char **)); 5255473Sbostic void up __P((int, char **)); 53*56121Selan __END_DECLS 5455473Sbostic 5555473Sbostic extern int NCMDS; 5655473Sbostic extern struct cmd cmdtab[]; 57