diff options
Diffstat (limited to 'lib/mlibc/options/posix/include/netinet/udp.h')
-rw-r--r-- | lib/mlibc/options/posix/include/netinet/udp.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/mlibc/options/posix/include/netinet/udp.h b/lib/mlibc/options/posix/include/netinet/udp.h deleted file mode 100644 index 5cc887d..0000000 --- a/lib/mlibc/options/posix/include/netinet/udp.h +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef _NETINET_UDP_H -#define _NETINET_UDP_H - -#include <stdint.h> - -#ifdef __cplusplus -extern "C" { -#endif - -struct udphdr { - union { - struct { - uint16_t uh_sport; - uint16_t uh_dport; - uint16_t uh_ulen; - uint16_t uh_sum; - }; - struct { - uint16_t source; - uint16_t dest; - uint16_t len; - uint16_t check; - }; - }; -}; - -#ifdef __cplusplus -} -#endif - -#endif // _NETINET_UDP_H |