chiark / gitweb /
Make run_directory.c stat the place it is going to try to run.
[elogind.git] / klibc / include / netinet / udp.h
1 /*
2  * netinet/udp.h
3  */
4
5 #ifndef _NETINET_UDP_H
6 #define _NETINET_UDP_H
7
8 /*
9  * We would include linux/udp.h, but it brings in too much other stuff
10  */
11
12 struct udphdr {
13         __u16   source;
14         __u16   dest;
15         __u16   len;
16         __u16   check;
17 };
18
19 #endif /* _NETINET_UDP_H */