drivers: gnss: gnss_u_blox_m10: fix compiler warning

Fix warning on implicit declaration of function 'malloc' when compiling
gnss_u_blox_m10.c.

Signed-off-by: Andreas Klinger <ak@it-klinger.de>
This commit is contained in:
Andreas Klinger 2024-06-30 13:01:38 +02:00 committed by Alberto Escolar
parent bb56c3898c
commit ac4878e9d0
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@
#include <zephyr/kernel.h>
#include <zephyr/drivers/gpio.h>
#include <string.h>
#include <stdlib.h>
#include "gnss_nmea0183.h"
#include "gnss_nmea0183_match.h"