2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-29 21:38:10 +00:00

Define cdefs before osdeps; macrofy a couple of prototypes

This commit is contained in:
Ted Lemon 1996-05-16 07:18:45 +00:00
parent 5fb85ad43c
commit 2f620dce9c
2 changed files with 8 additions and 8 deletions

View File

@ -55,9 +55,9 @@
#include <ctype.h>
#include <time.h>
#include "cdefs.h"
#include "osdep.h"
#include "dhcp.h"
#include "cdefs.h"
#include "tree.h"
#include "hash.h"
#include "inet.h"
@ -295,8 +295,8 @@ struct host_decl *find_host_by_name PROTO ((char *name));
struct host_decl *find_host_by_addr PROTO ((int, unsigned char *, int));
void new_address_range PROTO ((struct iaddr, struct iaddr,
struct subnet *));
extern struct subnet *find_subnet (struct iaddr);
void enter_subnet (struct subnet *);
extern struct subnet *find_subnet PROTO ((struct iaddr));
void enter_subnet PROTO ((struct subnet *));
void enter_lease PROTO ((struct lease *));
int supersede_lease PROTO ((struct lease *, struct lease *, int));
void release_lease PROTO ((struct lease *));
@ -319,7 +319,7 @@ struct tree_cache *new_tree_cache PROTO ((char *));
struct hash_table *new_hash_table PROTO ((int, char *));
struct hash_bucket *new_hash_bucket PROTO ((char *));
struct lease *new_lease PROTO ((char *));
struct lease *new_leases (int, char *);
struct lease *new_leases PROTO ((int, char *));
struct subnet *new_subnet PROTO ((char *));
struct class *new_class PROTO ((char *));
void free_class PROTO ((struct class *, char *));

View File

@ -55,9 +55,9 @@
#include <ctype.h>
#include <time.h>
#include "cdefs.h"
#include "osdep.h"
#include "dhcp.h"
#include "cdefs.h"
#include "tree.h"
#include "hash.h"
#include "inet.h"
@ -295,8 +295,8 @@ struct host_decl *find_host_by_name PROTO ((char *name));
struct host_decl *find_host_by_addr PROTO ((int, unsigned char *, int));
void new_address_range PROTO ((struct iaddr, struct iaddr,
struct subnet *));
extern struct subnet *find_subnet (struct iaddr);
void enter_subnet (struct subnet *);
extern struct subnet *find_subnet PROTO ((struct iaddr));
void enter_subnet PROTO ((struct subnet *));
void enter_lease PROTO ((struct lease *));
int supersede_lease PROTO ((struct lease *, struct lease *, int));
void release_lease PROTO ((struct lease *));
@ -319,7 +319,7 @@ struct tree_cache *new_tree_cache PROTO ((char *));
struct hash_table *new_hash_table PROTO ((int, char *));
struct hash_bucket *new_hash_bucket PROTO ((char *));
struct lease *new_lease PROTO ((char *));
struct lease *new_leases (int, char *);
struct lease *new_leases PROTO ((int, char *));
struct subnet *new_subnet PROTO ((char *));
struct class *new_class PROTO ((char *));
void free_class PROTO ((struct class *, char *));