First version

This commit is contained in:
Michael Brown
2005-04-29 13:26:31 +00:00
parent e4131ebb84
commit 65dc273d78
2 changed files with 40 additions and 0 deletions

15
src/include/resolv.h Normal file
View 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 */