]> Pileus Git - ~andy/fetchmail/blob - mx.h
Type cleanup.
[~andy/fetchmail] / mx.h
1 /* mx.h -- name-to-preference association for MX records */
2
3 struct mxentry
4 {
5     unsigned char       *name;
6     int                 pref;
7 };
8
9 extern struct mxentry * getmxrecords(const unsigned char *);
10
11 /* some versions of FreeBSD should declare this but don't */
12 extern int h_errno;
13
14 /* mx.h ends here */