summaryrefslogtreecommitdiffstats
path: root/libusb/error.c
diff options
context:
space:
mode:
Diffstat (limited to 'libusb/error.c')
-rw-r--r--libusb/error.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/libusb/error.c b/libusb/error.c
deleted file mode 100644
index f7d496d..0000000
--- a/libusb/error.c
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * USB Error messages
- *
- * Copyright (c) 2000-2001 Johannes Erdfelt <johannes@erdfelt.com>
- *
- * This library is covered by the LGPL, read LICENSE for details.
- */
-
-#include <errno.h>
-#include <string.h>
-
-#include "usb.h"
-#include "error.h"
-
-char usb_error_str[1024] = "";
-int usb_error_errno = 0;
-usb_error_type_t usb_error_type = USB_ERROR_TYPE_NONE;
-
-char *usb_strerror(void)
-{
- switch (usb_error_type) {
- case USB_ERROR_TYPE_NONE:
- return "No error";
- case USB_ERROR_TYPE_STRING:
- return usb_error_str;
- case USB_ERROR_TYPE_ERRNO:
- if (usb_error_errno > -USB_ERROR_BEGIN)
- return strerror(usb_error_errno);
- else
- /* Any error we don't know falls under here */
- return "Unknown error";
- }
-
- return "Unknown error";
-}
-