]> Pileus Git - ~andy/fetchmail/blob - mx.h
_( -> GT_(
[~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 char *);
10
11 /* some versions of FreeBSD should declare this but don't */
12 /* But only declare it if it isn't already */
13 #ifndef h_errno
14 extern int h_errno;
15 #endif /* ndef h_errno */
16
17 /* mx.h ends here */