#ifndef lint static char rcsid[] = "$Id: dev_query.c,v 1.1 1997/02/28 14:02:08 tommy Exp $"; #endif #include #include #include "play.h" int dev_query(char *device) { int fd; if ((fd = open(device, O_WRONLY, 0)) < 0) return FALSE; close(fd); return TRUE; }