NetBSD/games/cribbage/instr.c

99 lines
2.9 KiB
C
Raw Normal View History

/* $NetBSD: instr.c,v 1.10 2003/08/07 09:37:10 agc Exp $ */
1995-03-21 18:03:38 +03:00
1993-03-21 12:45:37 +03:00
/*-
1995-03-21 18:03:38 +03:00
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
1993-03-21 12:45:37 +03:00
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
1997-10-10 16:26:34 +04:00
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
1995-03-21 18:03:38 +03:00
#if 0
static char sccsid[] = "@(#)instr.c 8.1 (Berkeley) 5/31/93";
#else
__RCSID("$NetBSD: instr.c,v 1.10 2003/08/07 09:37:10 agc Exp $");
1995-03-21 18:03:38 +03:00
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
1995-03-21 18:03:38 +03:00
#include <curses.h>
1997-10-11 06:44:30 +04:00
#include <err.h>
#include <fcntl.h>
1993-03-21 12:45:37 +03:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
1995-03-21 18:03:38 +03:00
#include <unistd.h>
#include <errno.h>
1995-03-21 18:03:38 +03:00
#include "deck.h"
#include "cribbage.h"
1993-03-21 12:45:37 +03:00
#include "pathnames.h"
1995-03-21 18:03:38 +03:00
void
1993-03-21 12:45:37 +03:00
instructions()
{
int pstat;
int fd;
1993-03-21 12:45:37 +03:00
pid_t pid;
const char *path;
1993-03-21 12:45:37 +03:00
1995-03-21 18:03:38 +03:00
switch (pid = vfork()) {
1993-03-21 12:45:37 +03:00
case -1:
1997-10-11 06:44:30 +04:00
err(1, "vfork");
1993-03-21 12:45:37 +03:00
case 0:
/* Follow the same behaviour for pagers as defined in POSIX.2
* for mailx and man. We only use a pager if stdout is
* a terminal, and we pass the file on stdin to sh -c pager.
*/
if (!isatty(1))
path = "cat";
else {
if (!(path = getenv("PAGER")) || (*path == 0))
path = _PATH_MORE;
}
if ((fd = open(_PATH_INSTR, O_RDONLY)) == -1) {
warn("open %s", _PATH_INSTR);
_exit(1);
}
if (dup2(fd, 0) == -1) {
warn("dup2");
_exit(1);
}
execl("/bin/sh", "sh", "-c", path, NULL);
warn(NULL);
1993-03-21 12:45:37 +03:00
_exit(1);
default:
do {
pid = waitpid(pid, &pstat, 0);
1993-03-21 12:45:37 +03:00
} while (pid == -1 && errno == EINTR);
if (pid == -1 || WEXITSTATUS(pstat))
1993-03-21 12:45:37 +03:00
exit(1);
}
}