1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

pkg/lwip: move includes to the top of the file

This commit is contained in:
Hendrik van Essen 2022-03-07 17:17:44 +01:00
parent f31fdfd12d
commit 850863c22f

View File

@ -13,6 +13,9 @@
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#include <assert.h>
#include <stdio.h>
#include "lwip/sock_internal.h"
#include "net/af.h"
@ -349,9 +352,6 @@ static int _create(int type, int proto, uint16_t flags, struct netconn **out)
return 0;
}
#include <assert.h>
#include <stdio.h>
int lwip_sock_create(struct netconn **conn, const struct _sock_tl_ep *local,
const struct _sock_tl_ep *remote, int proto,
uint16_t flags, int type)