Series of errors in brltty

Code:
In file included from ./usb_freebsd.c:34:
./usb_bsd.h:38:21: error: use of undeclared identifier 'USB_SET_TIMEOUT'
    if (ioctl(file, USB_SET_TIMEOUT, &arg) == -1) {
                    ^

The above is the error while below will show the code of usb_bsd.h

Code:
static int
usbSetTimeout (int file, int new, int *old) {
  if (!old || (new != *old)) {
    int arg = new;
    if (ioctl(file, USB_SET_TIMEOUT, &arg) == -1) {
      logSystemError("USB timeout set");
      return 0;
    }
    if (old) *old = new;
  }
  return 1;
}

Soon, I'll need to take my own medicine and head towards the mailing lists. Shouldn't $VALUE and VALUE have the same grammatical properties?
 
There is a series with find and grep in the format of find / [i]unknown[/i] -exec grep H "expression" {} \;[cmd] or somewhat to that effect to find text within files. I have a small part right- the beginning and end; yet, what am I missing/have wrong in the middle?
 
Back
Top