Ardupilot2/libraries/AP_Networking/lwip_hal/include/arch/cc.h
2024-01-03 12:14:47 +11:00

22 lines
273 B
C

#pragma once
#include <stdint.h>
#include <sys/select.h>
#ifdef __cplusplus
extern "C"
{
#endif
#define LWIP_ERRNO_STDINCLUDE 1
extern unsigned int lwip_port_rand(void);
#define LWIP_RAND() (lwip_port_rand())
typedef uint32_t sys_prot_t;
#ifdef __cplusplus
}
#endif