mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 01:59:38 -04:00
17 lines
415 B
C
17 lines
415 B
C
|
|
/*
|
||
|
|
* Declarations for lsdev(8).
|
||
|
|
*/
|
||
|
|
#include <sys/types.h>
|
||
|
|
#include <sys/param.h>
|
||
|
|
#include <sys/time.h>
|
||
|
|
#include <sys/proc.h>
|
||
|
|
#include <vm/vm.h>
|
||
|
|
#include <sys/sysctl.h>
|
||
|
|
#include <sys/devconf.h>
|
||
|
|
|
||
|
|
extern const char *const devtypes[]; /* device type array */
|
||
|
|
extern void print(struct devconf *); /* machine-specific print routine */
|
||
|
|
extern int vflag;
|
||
|
|
|
||
|
|
extern int findtype(const char *); /* get device type by name */
|