Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit f6d7553d authored by Alexandre Bailon's avatar Alexandre Bailon
Browse files

gbridge: Fix potential build issues


The gbridge.h header is using element defined in stdlib but
it doesn't include it which every include to gbridge.h
must be preceded by an include to stdlib.h.
Include stdlib.h from gbridge.h.

Signed-off-by: default avatarAlexandre Bailon <abailon@baylibre.com>
parent aea7aa0c
No related merge requests found
......@@ -21,6 +21,7 @@
#include <config.h>
#include <stdint.h>
#include <stdlib.h>
#include <linux/types.h>
#include <sys/queue.h>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment