mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 06:25:31 +00: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:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user