xref: /netbsd/sys/arch/mips/mips/procfs_machdep.c (revision bf9ec67e)
1 /* $NetBSD: procfs_machdep.c,v 1.1 2002/03/13 02:55:26 simonb Exp $ */
2 
3 #include <sys/param.h>
4 #include <sys/systm.h>
5 #include <sys/mount.h>
6 #include <sys/vnode.h>
7 #include <miscfs/procfs/procfs.h>
8 
9 /*
10  * Linux-style /proc/cpuinfo.
11  * Only used when procfs is mounted with -o linux.
12  */
13 int
14 procfs_getcpuinfstr(char *buf, int *len)
15 {
16 	*len = 0;
17 
18 	return 0;
19 }
20