* Fixup some more headers, following axeld's lead with stdint.h (new_stack didn't compile for me without these).

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18010 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ithamar R. Adema
2006-07-03 03:27:04 +00:00
parent fb7cf8c43e
commit 62b4effa0a
5 changed files with 100 additions and 94 deletions
+6 -4
View File
@@ -38,11 +38,13 @@
#ifndef NETINET_UDP_H
#define NETINET_UDP_H
#include <stdint.h>
struct udphdr {
uint16 uh_sport;
uint16 uh_dport;
uint16 uh_ulen;
uint16 uh_sum;
uint16_t uh_sport;
uint16_t uh_dport;
uint16_t uh_ulen;
uint16_t uh_sum;
};
#endif /* NETINET_UDP_H */