remove depency on c99 types

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13211 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2003-12-13 20:30:08 +00:00
parent 6f92c20ec9
commit 8576792c83

View File

@@ -176,12 +176,12 @@ typedef int HEADER; /* will never be used */
#endif #endif
struct dns_header { struct dns_header {
u_int16_t id; unsigned id;
u_int16_t misc; unsigned misc;
u_int16_t qdcount; unsigned qdcount;
u_int16_t ancount; unsigned ancount;
u_int16_t nscount; unsigned nscount;
u_int16_t arcount; unsigned arcount;
}; };
struct dns_reply{ struct dns_reply{