mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-22 14:49:20 -04:00
Change the placement of ctor/dtor attributes in the dst_api
Change the placement of the attributes to match the existing usage in other places (after the declaration).
This commit is contained in:
parent
ac395b058c
commit
d00ff78a3e
1 changed files with 4 additions and 4 deletions
|
|
@ -189,10 +189,10 @@ addsuffix(char *filename, int len, const char *dirname, const char *ofilename,
|
|||
|
||||
static isc_mem_t *dst__mctx = NULL;
|
||||
|
||||
void ISC_CONSTRUCTOR
|
||||
dst__lib_init(void);
|
||||
void ISC_DESTRUCTOR
|
||||
dst__lib_destroy(void);
|
||||
void
|
||||
dst__lib_init(void) ISC_CONSTRUCTOR;
|
||||
void
|
||||
dst__lib_destroy(void) ISC_DESTRUCTOR;
|
||||
|
||||
void
|
||||
dst__lib_init(void) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue