Deleted Added
full compact
systm.h (42453) systm.h (42680)
1/*-
2 * Copyright (c) 1982, 1988, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)systm.h 8.7 (Berkeley) 3/29/95
1/*-
2 * Copyright (c) 1982, 1988, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)systm.h 8.7 (Berkeley) 3/29/95
39 * $Id: systm.h,v 1.81 1999/01/08 17:31:21 eivind Exp $
39 * $Id: systm.h,v 1.82 1999/01/10 01:58:27 eivind Exp $
40 */
41
42#ifndef _SYS_SYSTM_H_
43#define _SYS_SYSTM_H_
44
45#include <machine/cpufunc.h>
46#include <sys/callout.h>
47

--- 67 unchanged lines hidden (view full) ---

115int printf __P((const char *, ...)) __printflike(1, 2);
116int snprintf __P((char *, size_t, const char *, ...)) __printflike(3, 4);
117int sprintf __P((char *buf, const char *, ...)) __printflike(2, 3);
118void uprintf __P((const char *, ...)) __printflike(1, 2);
119void vprintf __P((const char *, _BSD_VA_LIST_)) __printflike(1, 0);
120int vsnprintf __P((char *, size_t, const char *, _BSD_VA_LIST_)) __printflike(3, 0);
121int vsprintf __P((char *buf, const char *, _BSD_VA_LIST_)) __printflike(2, 0);
122void ttyprintf __P((struct tty *, const char *, ...)) __printflike(2, 3);
40 */
41
42#ifndef _SYS_SYSTM_H_
43#define _SYS_SYSTM_H_
44
45#include <machine/cpufunc.h>
46#include <sys/callout.h>
47

--- 67 unchanged lines hidden (view full) ---

115int printf __P((const char *, ...)) __printflike(1, 2);
116int snprintf __P((char *, size_t, const char *, ...)) __printflike(3, 4);
117int sprintf __P((char *buf, const char *, ...)) __printflike(2, 3);
118void uprintf __P((const char *, ...)) __printflike(1, 2);
119void vprintf __P((const char *, _BSD_VA_LIST_)) __printflike(1, 0);
120int vsnprintf __P((char *, size_t, const char *, _BSD_VA_LIST_)) __printflike(3, 0);
121int vsprintf __P((char *buf, const char *, _BSD_VA_LIST_)) __printflike(2, 0);
122void ttyprintf __P((struct tty *, const char *, ...)) __printflike(2, 3);
123int sscanf __P((const char *, char const *, ...));
124int vsscanf __P((const char *, char const *, _BSD_VA_LIST_));
125u_quad_t strtouq __P((const char *, char **, int));
126quad_t strtoq __P((const char *, char **, int base));
123
124void bcopy __P((const void *from, void *to, size_t len));
125void ovbcopy __P((const void *from, void *to, size_t len));
126#ifdef __i386__
127extern void (*bzero) __P((void *buf, size_t len));
128#else
129void bzero __P((void *buf, size_t len));
130#endif

--- 178 unchanged lines hidden ---
127
128void bcopy __P((const void *from, void *to, size_t len));
129void ovbcopy __P((const void *from, void *to, size_t len));
130#ifdef __i386__
131extern void (*bzero) __P((void *buf, size_t len));
132#else
133void bzero __P((void *buf, size_t len));
134#endif

--- 178 unchanged lines hidden ---