1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

sock_util: add missing includes

This commit is contained in:
Koen Zandberg 2018-07-18 15:28:01 +02:00
parent d04058b54b
commit 6a81a4d587
No known key found for this signature in database
GPG Key ID: 0895A893E6D2985B
2 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,7 @@
#define NET_SOCK_UTIL_H
#include <stdbool.h>
#include <stdint.h>
#include "net/sock/udp.h"

View File

@ -22,6 +22,7 @@
#include <arpa/inet.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "net/sock/udp.h"