NetBSD/sys/arch/evbmips/malta/procfs_machdep.c

20 lines
359 B
C

/* $NetBSD: procfs_machdep.c,v 1.1 2002/03/07 14:44:04 simonb Exp $ */
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mount.h>
#include <sys/vnode.h>
#include <miscfs/procfs/procfs.h>
/*
* Linux-style /proc/cpuinfo.
* Only used when procfs is mounted with -o linux.
*/
int
procfs_getcpuinfstr(char *buf, int *len)
{
*len = 0;
return 0;
}