Module Name: src
Committed By: christos
Date: Thu Feb 6 18:43:41 UTC 2014
Modified Files:
src/sys/arch/emips/stand/common: common.h
Log Message:
add missing prototype; remove names from args
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/emips/stand/common/common.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/emips/stand/common/common.h
diff -u src/sys/arch/emips/stand/common/common.h:1.1 src/sys/arch/emips/stand/common/common.h:1.2
--- src/sys/arch/emips/stand/common/common.h:1.1 Tue Jan 25 20:18:54 2011
+++ src/sys/arch/emips/stand/common/common.h Thu Feb 6 13:43:41 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: common.h,v 1.1 2011/01/26 01:18:54 pooka Exp $ */
+/* $NetBSD: common.h,v 1.2 2014/02/06 18:43:41 christos Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -58,15 +58,16 @@ extern int getsysid(void);
/* prom_iface.c */
extern int init_usart(void);
extern int init_memory(void);
-extern void call_kernel(uint32_t addr, char *kname, char *kargs, u_int bim, char *bip);
+extern void call_kernel(uint32_t, char *, char *, u_int, char *);
/* ace.c */
-extern int aceprobe(int unit);
+extern int aceprobe(int);
/* enic.c */
-extern int enic_present(int unit);
+extern int enic_present(int);
-/*
- * vers.c (generated by newvers.sh)
- */
+/* print.c */
+extern void xputchar(int);
+
+/* vers.c (generated by newvers.sh) */
extern const char bootprog_rev[];