diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-29 14:35:21 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-30 10:33:16 -0700 |
commit | da3c1ce098fbfa699770447cf99cf19f6ac95fb1 (patch) | |
tree | 73041c1b25d3a2a4df46855a1a2c396c87ef17ed /libusb/usb_common.c | |
parent | cda33a489898c18024823b4d4b6e5e0c3b2de24a (diff) |
Tidy #includes
Diffstat (limited to 'libusb/usb_common.c')
-rw-r--r-- | libusb/usb_common.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libusb/usb_common.c b/libusb/usb_common.c index 9a23998..29dec42 100644 --- a/libusb/usb_common.c +++ b/libusb/usb_common.c @@ -6,9 +6,10 @@ #include <stdint.h> /* for uint{n}_t types */ #include <stddef.h> /* for size_t */ -#include <string.h> /* memcpy(newlib) */ -#include <stdlib.h> /* for malloc(pico_malloc), realloc(pico_malloc), reallocarray(pico_malloc) */ -#include "tusb.h" /* for various tusb_*_t types */ +#include <string.h> /* memcpy() */ +#include <stdlib.h> /* for malloc(), realloc(), reallocarray() */ + +#include <tusb.h> /* for various tusb_*_t types */ #include <libmisc/assert.h> |