mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-12 07:31:12 -04:00
11 lines
228 B
C
11 lines
228 B
C
#include <lib/libkern/libkern.h>
|
|
#include <sparc/stand/common/isfloppy.h>
|
|
|
|
int
|
|
bootdev_isfloppy(const char *dev)
|
|
{
|
|
return strncmp(dev, "fd", 2) == 0 ||
|
|
strstr(dev, "SUNW,fdtwo") != NULL ||
|
|
strstr(dev, "fdthree") != NULL;
|
|
}
|