xref: /minix3/usr.bin/w/extern.h (revision 11eaad3501b899a8ceddf856c90089fa8ebc1f3d)
1*11eaad35SDavid van Moolenbroek /*	$NetBSD: extern.h,v 1.7 2011/10/21 02:26:09 christos Exp $	*/
2*11eaad35SDavid van Moolenbroek 
3*11eaad35SDavid van Moolenbroek /*-
4*11eaad35SDavid van Moolenbroek  * Copyright (c) 1993
5*11eaad35SDavid van Moolenbroek  *	The Regents of the University of California.  All rights reserved.
6*11eaad35SDavid van Moolenbroek  *
7*11eaad35SDavid van Moolenbroek  * Redistribution and use in source and binary forms, with or without
8*11eaad35SDavid van Moolenbroek  * modification, are permitted provided that the following conditions
9*11eaad35SDavid van Moolenbroek  * are met:
10*11eaad35SDavid van Moolenbroek  * 1. Redistributions of source code must retain the above copyright
11*11eaad35SDavid van Moolenbroek  *    notice, this list of conditions and the following disclaimer.
12*11eaad35SDavid van Moolenbroek  * 2. Redistributions in binary form must reproduce the above copyright
13*11eaad35SDavid van Moolenbroek  *    notice, this list of conditions and the following disclaimer in the
14*11eaad35SDavid van Moolenbroek  *    documentation and/or other materials provided with the distribution.
15*11eaad35SDavid van Moolenbroek  * 3. Neither the name of the University nor the names of its contributors
16*11eaad35SDavid van Moolenbroek  *    may be used to endorse or promote products derived from this software
17*11eaad35SDavid van Moolenbroek  *    without specific prior written permission.
18*11eaad35SDavid van Moolenbroek  *
19*11eaad35SDavid van Moolenbroek  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20*11eaad35SDavid van Moolenbroek  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21*11eaad35SDavid van Moolenbroek  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22*11eaad35SDavid van Moolenbroek  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23*11eaad35SDavid van Moolenbroek  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24*11eaad35SDavid van Moolenbroek  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25*11eaad35SDavid van Moolenbroek  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26*11eaad35SDavid van Moolenbroek  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27*11eaad35SDavid van Moolenbroek  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28*11eaad35SDavid van Moolenbroek  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29*11eaad35SDavid van Moolenbroek  * SUCH DAMAGE.
30*11eaad35SDavid van Moolenbroek  *
31*11eaad35SDavid van Moolenbroek  *	@(#)extern.h	8.1 (Berkeley) 6/6/93
32*11eaad35SDavid van Moolenbroek  */
33*11eaad35SDavid van Moolenbroek 
34*11eaad35SDavid van Moolenbroek struct kinfo_proc2;
35*11eaad35SDavid van Moolenbroek void	fmt_puts(char *, int *);
36*11eaad35SDavid van Moolenbroek void	fmt_putc(int, int *);
37*11eaad35SDavid van Moolenbroek void	pr_attime(time_t *, time_t *);
38*11eaad35SDavid van Moolenbroek void	pr_idle(time_t);
39