1/*	$NetBSD: procfs_machdep.c,v 1.2.24.3 2004/09/21 13:11:46 skrll Exp $	*/
2
3#include <sys/cdefs.h>
4__KERNEL_RCSID(0, "$NetBSD: procfs_machdep.c,v 1.2.24.3 2004/09/21 13:11:46 skrll Exp $");
5
6#include <sys/param.h>
7#include <sys/systm.h>
8#include <sys/mount.h>
9#include <sys/vnode.h>
10#include <miscfs/procfs/procfs.h>
11
12
13/*
14 * Linux-style /proc/cpuinfo.
15 * Only used when procfs is mounted with -o linux.
16 */
17int
18procfs_getcpuinfstr(char *buf, int *len)
19{
20	*len = 0;
21
22	return 0;
23}
24