Add missing <string.h> includes

pull/12035/head
Kevin Bracey 2019-12-05 15:03:34 +02:00
parent d6a48b5124
commit 8b02c4ed1c
12 changed files with 17 additions and 5 deletions

View File

@ -15,7 +15,8 @@
* limitations under the License. * limitations under the License.
*/ */
#include "stdint.h" #include <stdint.h>
#include <string.h>
#include "USBAudio.h" #include "USBAudio.h"
#include "USBAudio_Types.h" #include "USBAudio_Types.h"
#include "EndpointResolver.h" #include "EndpointResolver.h"

View File

@ -15,7 +15,8 @@
* limitations under the License. * limitations under the License.
*/ */
#include "stdint.h" #include <stdint.h>
#include <string.h>
#include "USBCDC.h" #include "USBCDC.h"
#include "EndpointResolver.h" #include "EndpointResolver.h"
#include "AsyncOp.h" #include "AsyncOp.h"

View File

@ -15,7 +15,8 @@
* limitations under the License. * limitations under the License.
*/ */
#include "stdint.h" #include <stdint.h>
#include <string.h>
#include "USBHID.h" #include "USBHID.h"
#include "EndpointResolver.h" #include "EndpointResolver.h"
#include "usb_phy_api.h" #include "usb_phy_api.h"

View File

@ -15,7 +15,8 @@
* limitations under the License. * limitations under the License.
*/ */
#include "stdint.h" #include <stdint.h>
#include <string.h>
#include "USBMIDI.h" #include "USBMIDI.h"
#include "EndpointResolver.h" #include "EndpointResolver.h"
#include "usb_phy_api.h" #include "usb_phy_api.h"

View File

@ -17,6 +17,7 @@
#include <stdint.h> #include <stdint.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h>
#include "USBMSD.h" #include "USBMSD.h"
#include "EndpointResolver.h" #include "EndpointResolver.h"
#include "usb_phy_api.h" #include "usb_phy_api.h"

View File

@ -15,7 +15,8 @@
* limitations under the License. * limitations under the License.
*/ */
#include "stdint.h" #include <stdint.h>
#include <string.h>
#include "USBMouse.h" #include "USBMouse.h"
#include "ThisThread.h" #include "ThisThread.h"
#include "usb_phy_api.h" #include "usb_phy_api.h"

View File

@ -22,6 +22,7 @@ Copyright (c) 2017, Arm Limited and affiliates.
SPDX-License-Identifier: BSD-3-Clause SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <stdlib.h> #include <stdlib.h>
#include <string.h>
#include "LoRaMac.h" #include "LoRaMac.h"
#include "mbed-trace/mbed_trace.h" #include "mbed-trace/mbed_trace.h"

View File

@ -22,6 +22,7 @@ Copyright (c) 2017, Arm Limited and affiliates.
SPDX-License-Identifier: BSD-3-Clause SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <string.h>
#include "LoRaMacCommand.h" #include "LoRaMacCommand.h"
#include "LoRaMac.h" #include "LoRaMac.h"

View File

@ -25,6 +25,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <stdint.h> #include <stdint.h>
#include <string.h>
#include "LoRaMacCrypto.h" #include "LoRaMacCrypto.h"
#include "system/lorawan_data_structures.h" #include "system/lorawan_data_structures.h"

View File

@ -29,6 +29,7 @@
* *
*/ */
#include <string.h>
#include "LoRaPHYAU915.h" #include "LoRaPHYAU915.h"
#include "lora_phy_ds.h" #include "lora_phy_ds.h"

View File

@ -29,6 +29,7 @@
* *
*/ */
#include <string.h>
#include "LoRaPHYUS915.h" #include "LoRaPHYUS915.h"
#include "lora_phy_ds.h" #include "lora_phy_ds.h"

View File

@ -19,6 +19,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE. * SOFTWARE.
*/ */
#include <string.h>
#include "rtos/Thread.h" #include "rtos/Thread.h"
#include "rtos/ThisThread.h" #include "rtos/ThisThread.h"
#include "rtos_idle.h" #include "rtos_idle.h"