mirror of
https://github.com/ipxe/ipxe
synced 2025-12-24 15:23:42 +03:00
First version
This commit is contained in:
15
src/include/resolv.h
Normal file
15
src/include/resolv.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#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 */
|
||||
Reference in New Issue
Block a user