Deleted Added
full compact
usbhid.c (187994) usbhid.c (188945)
1/* $NetBSD: usbhid.c,v 1.14 2000/07/03 02:51:37 matt Exp $ */
1/* $NetBSD: usbhid.c,v 1.14 2000/07/03 02:51:37 matt Exp $ */
2/* $FreeBSD: head/usr.bin/usbhidctl/usbhid.c 187994 2009-02-02 00:49:39Z alfred $ */
2/* $FreeBSD: head/usr.bin/usbhidctl/usbhid.c 188945 2009-02-23 18:36:54Z thompsa $ */
3
4/*
5 * Copyright (c) 1998 The NetBSD Foundation, Inc.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to The NetBSD Foundation
9 * by Lennart Augustsson (augustss@netbsd.org).
10 *

--- 31 unchanged lines hidden (view full) ---

42#include <string.h>
43#include <sys/types.h>
44#include <fcntl.h>
45#include <unistd.h>
46#include <err.h>
47#include <ctype.h>
48#include <errno.h>
49#include <usbhid.h>
3
4/*
5 * Copyright (c) 1998 The NetBSD Foundation, Inc.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to The NetBSD Foundation
9 * by Lennart Augustsson (augustss@netbsd.org).
10 *

--- 31 unchanged lines hidden (view full) ---

42#include <string.h>
43#include <sys/types.h>
44#include <fcntl.h>
45#include <unistd.h>
46#include <err.h>
47#include <ctype.h>
48#include <errno.h>
49#include <usbhid.h>
50#include <dev/usb2/include/usb2_hid.h>
50#include <dev/usb/usbhid.h>
51
52int verbose = 0;
53int all = 0;
54int noname = 0;
55int hexdump = 0;
56static int reportid;
57
58char **names;

--- 284 unchanged lines hidden ---
51
52int verbose = 0;
53int all = 0;
54int noname = 0;
55int hexdump = 0;
56static int reportid;
57
58char **names;

--- 284 unchanged lines hidden ---