Ardupilot2/libraries/AP_Networking/lwip_hal/include/arch/cc.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
273 B
C
Raw Normal View History

#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