summaryrefslogtreecommitdiff
path: root/gusb/gusb-util.c
blob: f4713377e5b107b1c91c7b87a05c5d82ccc47261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2011 Hans de Goede <hdegoede@redhat.com>
 *
 * SPDX-License-Identifier: LGPL-2.1+
 */

#include "config.h"

#include <libusb.h>

#include "gusb-util.h"

const gchar *
g_usb_strerror (gint error_code)
{
	return libusb_strerror (error_code);
}