Don't use the extern keyword for functions because it's redundant.

This commit is contained in:
László Monda
2017-09-28 02:37:55 +02:00
parent 41c2556386
commit ecf1ad2468
29 changed files with 62 additions and 59 deletions

View File

@@ -32,9 +32,8 @@
// Functions:
extern usb_status_t UsbGenericHidCallback(class_handle_t handle, uint32_t event, void *param);
extern usb_status_t UsbGenericHidSetConfiguration(class_handle_t handle, uint8_t configuration);
extern usb_status_t UsbGenericHidSetInterface(class_handle_t handle, uint8_t interface, uint8_t alternateSetting);
usb_status_t UsbGenericHidCallback(class_handle_t handle, uint32_t event, void *param);
usb_status_t UsbGenericHidSetConfiguration(class_handle_t handle, uint8_t configuration);
usb_status_t UsbGenericHidSetInterface(class_handle_t handle, uint8_t interface, uint8_t alternateSetting);
#endif