2
0
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:
Ondřej Surý
2024-08-12 11:55:13 +02:00
parent ac395b058c
commit d00ff78a3e

View File

@@ -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) {