2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-30 13:57:50 +00:00

Fix up jmp_buf declarations

This commit is contained in:
Ted Lemon
1996-05-16 23:12:18 +00:00
parent 74ccb1f3ac
commit 56c9de4bd7
2 changed files with 36 additions and 36 deletions

36
dhcpd.h
View File

@@ -243,24 +243,24 @@ void readconf PROTO ((void));
void read_leases PROTO ((void));
void parse_statement PROTO ((FILE *));
void skip_to_semi PROTO ((FILE *));
struct host_decl *parse_host_statement PROTO ((FILE *, jmp_buf *));
char *parse_host_name PROTO ((FILE *, jmp_buf *));
void parse_class_statement PROTO ((FILE *, jmp_buf *, int));
void parse_class_decl PROTO ((FILE *, jmp_buf *, struct class *));
struct subnet *parse_subnet_statement PROTO ((FILE *, jmp_buf *));
void parse_subnet_decl PROTO ((FILE *, jmp_buf *, struct subnet *));
void parse_host_decl PROTO ((FILE *, jmp_buf *, struct host_decl *));
void parse_hardware_decl PROTO ((FILE *, jmp_buf *, struct host_decl *));
struct hardware parse_hardware_addr PROTO ((FILE *, jmp_buf *));
char *parse_filename_decl PROTO ((FILE *, jmp_buf *));
struct tree *parse_ip_addr_or_hostname PROTO ((FILE *, jmp_buf *, int));
void parse_fixed_addr_decl PROTO ((FILE *, jmp_buf *, struct host_decl *));
void parse_option_decl PROTO ((FILE *, jmp_buf *, struct tree_cache **));
TIME parse_timestamp PROTO ((FILE *, jmp_buf *));
TIME parse_date PROTO ((FILE *, jmp_buf *));
struct lease *parse_lease_statement PROTO ((FILE *, jmp_buf *));
void parse_address_range PROTO ((FILE *, jmp_buf *, struct subnet *));
unsigned char *parse_numeric_aggregate PROTO ((FILE *, jmp_buf *,
struct host_decl *parse_host_statement PROTO ((FILE *, jrefproto));
char *parse_host_name PROTO ((FILE *, jrefproto));
void parse_class_statement PROTO ((FILE *, jrefproto, int));
void parse_class_decl PROTO ((FILE *, jrefproto, struct class *));
struct subnet *parse_subnet_statement PROTO ((FILE *, jrefproto));
void parse_subnet_decl PROTO ((FILE *, jrefproto, struct subnet *));
void parse_host_decl PROTO ((FILE *, jrefproto, struct host_decl *));
void parse_hardware_decl PROTO ((FILE *, jrefproto, struct host_decl *));
struct hardware parse_hardware_addr PROTO ((FILE *, jrefproto));
char *parse_filename_decl PROTO ((FILE *, jrefproto));
struct tree *parse_ip_addr_or_hostname PROTO ((FILE *, jrefproto, int));
void parse_fixed_addr_decl PROTO ((FILE *, jrefproto, struct host_decl *));
void parse_option_decl PROTO ((FILE *, jrefproto, struct tree_cache **));
TIME parse_timestamp PROTO ((FILE *, jrefproto));
TIME parse_date PROTO ((FILE *, jrefproto));
struct lease *parse_lease_statement PROTO ((FILE *, jrefproto));
void parse_address_range PROTO ((FILE *, jrefproto, struct subnet *));
unsigned char *parse_numeric_aggregate PROTO ((FILE *, jrefproto,
unsigned char *, int *,
int, int, int));
void convert_num PROTO ((unsigned char *, char *, int, int));

View File

@@ -243,24 +243,24 @@ void readconf PROTO ((void));
void read_leases PROTO ((void));
void parse_statement PROTO ((FILE *));
void skip_to_semi PROTO ((FILE *));
struct host_decl *parse_host_statement PROTO ((FILE *, jmp_buf *));
char *parse_host_name PROTO ((FILE *, jmp_buf *));
void parse_class_statement PROTO ((FILE *, jmp_buf *, int));
void parse_class_decl PROTO ((FILE *, jmp_buf *, struct class *));
struct subnet *parse_subnet_statement PROTO ((FILE *, jmp_buf *));
void parse_subnet_decl PROTO ((FILE *, jmp_buf *, struct subnet *));
void parse_host_decl PROTO ((FILE *, jmp_buf *, struct host_decl *));
void parse_hardware_decl PROTO ((FILE *, jmp_buf *, struct host_decl *));
struct hardware parse_hardware_addr PROTO ((FILE *, jmp_buf *));
char *parse_filename_decl PROTO ((FILE *, jmp_buf *));
struct tree *parse_ip_addr_or_hostname PROTO ((FILE *, jmp_buf *, int));
void parse_fixed_addr_decl PROTO ((FILE *, jmp_buf *, struct host_decl *));
void parse_option_decl PROTO ((FILE *, jmp_buf *, struct tree_cache **));
TIME parse_timestamp PROTO ((FILE *, jmp_buf *));
TIME parse_date PROTO ((FILE *, jmp_buf *));
struct lease *parse_lease_statement PROTO ((FILE *, jmp_buf *));
void parse_address_range PROTO ((FILE *, jmp_buf *, struct subnet *));
unsigned char *parse_numeric_aggregate PROTO ((FILE *, jmp_buf *,
struct host_decl *parse_host_statement PROTO ((FILE *, jrefproto));
char *parse_host_name PROTO ((FILE *, jrefproto));
void parse_class_statement PROTO ((FILE *, jrefproto, int));
void parse_class_decl PROTO ((FILE *, jrefproto, struct class *));
struct subnet *parse_subnet_statement PROTO ((FILE *, jrefproto));
void parse_subnet_decl PROTO ((FILE *, jrefproto, struct subnet *));
void parse_host_decl PROTO ((FILE *, jrefproto, struct host_decl *));
void parse_hardware_decl PROTO ((FILE *, jrefproto, struct host_decl *));
struct hardware parse_hardware_addr PROTO ((FILE *, jrefproto));
char *parse_filename_decl PROTO ((FILE *, jrefproto));
struct tree *parse_ip_addr_or_hostname PROTO ((FILE *, jrefproto, int));
void parse_fixed_addr_decl PROTO ((FILE *, jrefproto, struct host_decl *));
void parse_option_decl PROTO ((FILE *, jrefproto, struct tree_cache **));
TIME parse_timestamp PROTO ((FILE *, jrefproto));
TIME parse_date PROTO ((FILE *, jrefproto));
struct lease *parse_lease_statement PROTO ((FILE *, jrefproto));
void parse_address_range PROTO ((FILE *, jrefproto, struct subnet *));
unsigned char *parse_numeric_aggregate PROTO ((FILE *, jrefproto,
unsigned char *, int *,
int, int, int));
void convert_num PROTO ((unsigned char *, char *, int, int));