david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/resolv.h

16 lines
288 B
C
Raw Normal View History

2005-04-29 15:26:31 +02:00
#ifndef RESOLV_H
#define RESOLV_H
#include "in.h"
#include "tables.h"
struct resolver {
int ( * resolv ) ( struct in_addr *address, const char *name );
};
#define __resolver __table(resolver,01)
extern int resolv ( struct in_addr *address, const char *name );
#endif /* RESOLV_H */