mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-14 14:56:21 -04:00
22 lines
668 B
C
22 lines
668 B
C
#include "config.h"
|
|
@include "@real_header@"
|
|
@ifndef _COMPAT_RESOLV_H_
|
|
@define _COMPAT_RESOLV_H_
|
|
#if CH_HPUX_MISSING_RES_PROTO > 0
|
|
@ifdef __cplusplus
|
|
extern "C" {
|
|
@endif
|
|
ssize_t res_query(char*, int, int, u_char*, int);
|
|
ssize_t res_search(char*, int, int, u_char*, int);
|
|
ssize_t res_mkquery(int, const char*, int, int, const char*, int,\
|
|
const char*, char*, int);
|
|
ssize_t res_send(const char*, ssize_t, char*, int);
|
|
int res_init();
|
|
ssize_t dn_comp(const char*, u_char*, ssize_t, u_char**, u_char**);
|
|
ssize_t dn_expand(const u_char*, const u_char*, const u_char*, u_char*, int);
|
|
@ifdef __cplusplus
|
|
}
|
|
@endif
|
|
#endif
|
|
@endif /* _COMPAT_RESOLV_H_ */
|