xref: /netbsd/sys/arch/vax/vax/procfs_machdep.c (revision bf9ec67e)
1 /*	$NetBSD: procfs_machdep.c,v 1.2 2001/01/18 17:48:03 tv 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 /*
11  * Linux-style /proc/cpuinfo.
12  * Only used when procfs is mounted with -o linux.
13  */
14 int
15 procfs_getcpuinfstr(char *buf, int *len)
16 {
17 	*len = 0;
18 
19 	return 0;
20 }
21