svn commit: r298647 - head/sys/boot/usb
Hans Petter Selasky
hselasky at FreeBSD.org
Tue Apr 26 15:33:55 UTC 2016
Author: hselasky
Date: Tue Apr 26 15:33:53 2016
New Revision: 298647
URL: https://svnweb.freebsd.org/changeset/base/298647
Log:
Add function needed for linking USB test application.
Modified:
head/sys/boot/usb/bsd_usbloader_test.c
Modified: head/sys/boot/usb/bsd_usbloader_test.c
==============================================================================
--- head/sys/boot/usb/bsd_usbloader_test.c Tue Apr 26 15:03:15 2016 (r298646)
+++ head/sys/boot/usb/bsd_usbloader_test.c Tue Apr 26 15:33:53 2016 (r298647)
@@ -57,6 +57,12 @@ DELAY(unsigned int delay)
usleep(delay);
}
+void
+delay(unsigned int delay)
+{
+ usleep(delay);
+}
+
int
pause(const char *what, int timeout)
{
More information about the svn-src-all
mailing list