xref: /netbsd-src/sys/arch/mips/mips/procfs_machdep.c (revision d710132b4b8ce7f7cccaaf660cb16aa16b4077a0)
1 /* $NetBSD: procfs_machdep.c,v 1.2 2003/01/17 23:36:18 thorpej 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