mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
add typedef for log function that was in lber.h
This commit is contained in:
parent
f6f13d8ecb
commit
1217a452e9
@ -14,6 +14,9 @@
|
||||
|
||||
#include "lber-int.h"
|
||||
|
||||
typedef void (*BER_LOG_FN) LDAP_P((FILE *file, char *subsys, int level, const char *fmt, va_list vl));
|
||||
|
||||
|
||||
BER_LOG_FN ber_int_log_proc = NULL;
|
||||
|
||||
/*
|
||||
|
@ -7,10 +7,12 @@
|
||||
|
||||
#include <ac/stdlib.h>
|
||||
#include <ac/string.h>
|
||||
|
||||
#include <ac/stdarg.h>
|
||||
#include "lber-int.h"
|
||||
|
||||
extern void * ber_pvt_err_file; /* bprint.c */
|
||||
/* bprint.c */
|
||||
typedef void (*BER_LOG_FN) LDAP_P((FILE *file, char *subsys, int level, const char *fmt, va_list vl));
|
||||
extern void * ber_pvt_err_file;
|
||||
extern BER_LOG_FN ber_int_log_proc;
|
||||
|
||||
struct lber_options ber_int_options = {
|
||||
|
Loading…
Reference in New Issue
Block a user