sys/*: add missing include of assert.h

This commit is contained in:
Bas Stottelaar 2020-10-21 15:58:33 +02:00
parent 970c72a0cb
commit 80d9da90df
79 changed files with 106 additions and 0 deletions

View File

@ -24,6 +24,8 @@
#define USB_H_USER_IS_RIOT_INTERNAL
#include <assert.h>
#include "usb/usbus.h"
#ifdef MODULE_USBUS_CDC_ECM

View File

@ -17,6 +17,7 @@
*/
#ifdef MODULE_CAN_ISOTP
#include <assert.h>
#include <errno.h>
#include <string.h>

View File

@ -16,6 +16,7 @@
* @}
*/
#include <assert.h>
#include <errno.h>
#include <string.h>

View File

@ -18,6 +18,7 @@
* @}
*/
#include <assert.h>
#include <errno.h>
#include "thread.h"

View File

@ -23,6 +23,7 @@
* @}
*/
#include <assert.h>
#include <errno.h>
#include <string.h>

View File

@ -16,6 +16,7 @@
* @}
*/
#include <assert.h>
#include <errno.h>
#include <string.h>

View File

@ -17,6 +17,7 @@
* @}
*/
#include <assert.h>
#include <string.h>
#include <limits.h>
#include <errno.h>

View File

@ -18,6 +18,7 @@
* @}
*/
#include <assert.h>
#include <string.h>
#include "debug.h"
#include "crypto/helper.h"

View File

@ -6,6 +6,7 @@
* directory for more details.
*/
#include <assert.h>
#include <stddef.h>
#include "mutex.h"

View File

@ -6,6 +6,7 @@
* directory for more details.
*/
#include <assert.h>
#include <inttypes.h>
#include <errno.h>

View File

@ -6,6 +6,7 @@
* directory for more details.
*/
#include <assert.h>
#include <string.h>
#include "memarray.h"

View File

@ -18,6 +18,7 @@
* @}
*/
#include <assert.h>
#include <limits.h>
#include "log.h"

View File

@ -13,6 +13,7 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include <stdbool.h>
#include "event.h"

View File

@ -18,6 +18,7 @@
* @}
*/
#include <assert.h>
#include <string.h>
#include "log.h"

View File

@ -19,6 +19,7 @@
#include "net/credman.h"
#include "mutex.h"
#include <assert.h>
#include <string.h>
#define ENABLE_DEBUG (0)

View File

@ -13,6 +13,8 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include "log.h"
#include "net/arp.h"
#include "net/dhcpv6.h"

View File

@ -17,6 +17,7 @@
* @}
*/
#include <assert.h>
#include <stdbool.h>
#include "periph/rtt.h"

View File

@ -17,6 +17,8 @@
* @}
*/
#include <assert.h>
#include "xtimer.h"
#include "net/gnrc/gomach/gomach.h"
#include "net/gnrc/gomach/timeout.h"

View File

@ -13,6 +13,8 @@
* @author José Ignacio Alamos <jose.alamos@haw-hamburg.de>
* @}
*/
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include "net/lora.h"

View File

@ -12,6 +12,8 @@
* @file
* @author José Ignacio Alamos <jose.alamos@haw-hamburg.de>
*/
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include "net/lora.h"

View File

@ -14,6 +14,8 @@
*
* @}
*/
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include "net/lora.h"

View File

@ -19,6 +19,7 @@
* @}
*/
#include <assert.h>
#include <stdbool.h>
#include "periph/rtt.h"

View File

@ -19,6 +19,8 @@
* @}
*/
#include <assert.h>
#include "net/gnrc.h"
#include "net/gnrc/lwmac/lwmac.h"
#include "net/gnrc/mac/internal.h"

View File

@ -19,6 +19,7 @@
* @}
*/
#include <assert.h>
#include <errno.h>
#include "net/gnrc/lwmac/timeout.h"

View File

@ -19,6 +19,8 @@
* @}
*/
#include <assert.h>
#include "periph/rtt.h"
#include "net/gnrc.h"
#include "net/gnrc/lwmac/lwmac.h"

View File

@ -19,6 +19,7 @@
* @}
*/
#include <assert.h>
#include <stdbool.h>
#include "net/gnrc.h"

View File

@ -19,6 +19,8 @@
* @}
*/
#include <assert.h>
#include "net/gnrc.h"
#include "net/gnrc/mac/timeout.h"

View File

@ -18,6 +18,7 @@
* @}
*/
#include <assert.h>
#include <errno.h>
#include "mbox.h"

View File

@ -15,6 +15,7 @@
* @author Kaspar Schleiser <kaspar@schleiser.de>
*/
#include <assert.h>
#include <string.h>
#include "net/ethernet/hdr.h"

View File

@ -15,6 +15,7 @@
* @author Oliver Hahm <oliver.hahm@inria.fr>
*/
#include <assert.h>
#include <string.h>
#include <kernel_defines.h>

View File

@ -14,6 +14,7 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include <errno.h>
#include <kernel_defines.h>

View File

@ -13,6 +13,8 @@
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#include <assert.h>
#include "net/gnrc/netif/hdr.h"
gnrc_pktsnip_t *gnrc_netif_hdr_build(const uint8_t *src, uint8_t src_len,

View File

@ -17,6 +17,8 @@
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
*/
#include <assert.h>
#include "log.h"
#include "board.h"
#include "net/gnrc/netif/lorawan_base.h"

View File

@ -13,6 +13,8 @@
* @author Jose Ignacio Alamos <jose.alamos@haw-hamburg.de>
*/
#include <assert.h>
#include "net/gnrc/pktbuf.h"
#include "net/gnrc/netif.h"
#include "net/gnrc/netif/lorawan.h"

View File

@ -13,6 +13,8 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include "net/gnrc/pktqueue.h"
#include "net/gnrc/netif/conf.h"
#include "net/gnrc/netif/internal.h"

View File

@ -12,6 +12,8 @@
* @file
*/
#include <assert.h>
#include "net/ipv6.h"
#include "net/gnrc/icmpv6.h"
#include "net/gnrc/netif.h"

View File

@ -15,6 +15,7 @@
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#include <assert.h>
#include <errno.h>
#include <inttypes.h>
#include <stdlib.h>

View File

@ -15,6 +15,7 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include <errno.h>
#include "utlist.h"

View File

@ -13,6 +13,8 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include "net/ipv6.h"
#include "net/ipv6/ext.h"
#include "net/ipv6/ext/opt.h"

View File

@ -15,6 +15,8 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include "net/ipv6/ext/rh.h"
#include "net/gnrc.h"

View File

@ -12,6 +12,8 @@
* @file
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include <kernel_defines.h>
#include "net/gnrc/netif/internal.h"

View File

@ -12,6 +12,8 @@
* @file
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#include <assert.h>
#include <kernel_defines.h>
#include "net/gnrc/ipv6/nib.h"

View File

@ -12,6 +12,8 @@
* @file
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include <kernel_defines.h>
#include "evtimer.h"

View File

@ -13,6 +13,7 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include <errno.h>
#include <stdbool.h>
#include <string.h>

View File

@ -12,6 +12,8 @@
* @file
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include <kernel_defines.h>
#include "net/gnrc/ipv6/nib.h"

View File

@ -13,6 +13,7 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include <errno.h>
#include <stdbool.h>
#include <kernel_defines.h>

View File

@ -13,6 +13,7 @@
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#include <assert.h>
#include <stdio.h>
#include <kernel_defines.h>

View File

@ -13,6 +13,7 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include <errno.h>
#include <stdio.h>

View File

@ -13,6 +13,7 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>

View File

@ -13,6 +13,7 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include <string.h>
#include "net/gnrc/icmpv6.h"

View File

@ -32,6 +32,8 @@
#if ENABLE_DEBUG
/* For PRIu16 etc. */
#include <assert.h>
#include <inttypes.h>
#endif

View File

@ -13,6 +13,7 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include <inttypes.h>
#include <stdbool.h>

View File

@ -12,6 +12,8 @@
* @file
*/
#include <assert.h>
#include "kernel_types.h"
#include "net/gnrc.h"
#include "thread.h"

View File

@ -19,6 +19,8 @@
* @}
*/
#include <assert.h>
#include "net/gnrc/pktbuf.h"
#include "net/gnrc/priority_pktqueue.h"

View File

@ -15,6 +15,7 @@
* @author Cenk Gündoğan <cenk.guendogan@haw-hamburg.de>
*/
#include <assert.h>
#include <string.h>
#include "kernel_defines.h"

View File

@ -16,6 +16,7 @@
* @author Cenk Gündoğan <cenk.guendogan@haw-hamburg.de>
*/
#include <assert.h>
#include <string.h>
#include "kernel_defines.h"

View File

@ -16,6 +16,7 @@
* @author Cenk Gündoğan <cenk.guendogan@haw-hamburg.de>
*/
#include <assert.h>
#include <stdbool.h>
#include <string.h>

View File

@ -14,6 +14,7 @@
* @author Cenk Gündoğan <cenk.guendogan@haw-hamburg.de>
*/
#include <assert.h>
#include <string.h>
#include "net/icmpv6.h"

View File

@ -15,6 +15,7 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <assert.h>
#include <string.h>
#include "net/gnrc/netif/internal.h"
#include "net/gnrc/ipv6/ext/rh.h"

View File

@ -13,6 +13,7 @@
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#include <assert.h>
#include <errno.h>
#include <stdlib.h>

View File

@ -15,6 +15,7 @@
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#include <assert.h>
#include <errno.h>
#include <string.h>

View File

@ -15,6 +15,7 @@
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#include <assert.h>
#include <errno.h>
#include <string.h>

View File

@ -17,6 +17,7 @@
* @}
*/
#include <assert.h>
#include <errno.h>
#include <string.h>
#include <utlist.h>

View File

@ -17,6 +17,7 @@
* @}
*/
#include <assert.h>
#include <utlist.h>
#include <errno.h>
#include "net/af.h"

View File

@ -17,6 +17,7 @@
* @}
*/
#include <assert.h>
#include <stdint.h>
#include <errno.h>

View File

@ -13,6 +13,7 @@
* @author Jose I. Alamos <jose.alamos@haw-hamburg.de>
*/
#include <assert.h>
#include <string.h>
#include "errno.h"

View File

@ -20,6 +20,7 @@
* @}
*/
#include <assert.h>
#include <stdint.h>
#include "phydat.h"

View File

@ -18,6 +18,8 @@
* @}
*/
#include <assert.h>
#include "irq.h"
#include "periph/pm.h"
#include "pm_layered.h"

View File

@ -20,6 +20,8 @@
*
* @}
*/
#include <assert.h>
#include <string.h>
#include "cpu.h"

View File

@ -18,6 +18,7 @@
* @author Oliver Hahm <oliver.hahm@inria.fr>
*/
#include <assert.h>
#include <ctype.h>
#include <stdio.h>
#include <string.h>

View File

@ -18,6 +18,7 @@
* @}
*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -22,6 +22,7 @@
* @}
*/
#include <assert.h>
#include <inttypes.h>
#include <string.h>

View File

@ -14,6 +14,8 @@
* @author Cenk Gündoğan <cenk.guendogan@haw-hamburg.de>
*/
#include <assert.h>
#include "inttypes.h"
#include "random.h"
#include "trickle.h"

View File

@ -18,6 +18,8 @@
* @}
*/
#include <assert.h>
#include "uri_parser.h"
#define ENABLE_DEBUG (0)

View File

@ -18,6 +18,7 @@
#define USB_H_USER_IS_RIOT_INTERNAL
#include <assert.h>
#include <string.h>
#include "tsrb.h"

View File

@ -17,6 +17,7 @@
#define USB_H_USER_IS_RIOT_INTERNAL
#include <assert.h>
#include <string.h>
#include "kernel_defines.h"

View File

@ -32,6 +32,7 @@
#include "usb.h"
#include "cpu.h"
#include <assert.h>
#include <stdint.h>
#include <string.h>
#include <errno.h>

View File

@ -18,6 +18,7 @@
#define USB_H_USER_IS_RIOT_INTERNAL
#include <assert.h>
#include <string.h>
#include <stdio.h>
#include "usb/descriptor.h"

View File

@ -22,6 +22,7 @@
* @}
*/
#include <assert.h>
#include <stdint.h>
#include <string.h>