/* * Copyright (c) 1988 Mark Nudleman * Copyright (c) 1988, 1993 * The Regents of the University of California. All rights reserved. * * %sccs.include.redist.c% */ #ifndef lint static char sccsid[] = "@(#)help.c 8.1 (Berkeley) 06/06/93"; #endif /* not lint */ #include #include #include "pathnames.h" help() { char cmd[MAXPATHLEN + 20]; (void)sprintf(cmd, "-more %s", _PATH_HELPFILE); lsystem(cmd); }