ctr: Remove parameter-less constructor prototype

Useless and causes a compiler warning/error:

  error: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent declaration [-Werror,-Wdeprecated-non-prototype]
This commit is contained in:
Tobias Brunner
2025-01-10 18:53:57 +01:00
parent 7af260a5f1
commit f1f0bd9de6
@@ -37,11 +37,6 @@ struct ctr_ipsec_crypter_t {
crypter_t crypter;
};
/**
* Create a ctr_ipsec_crypter instance.
*/
ctr_ipsec_crypter_t *ctr_ipsec_crypter_create();
/**
* Create a ctr_ipsec_crypter instance.
*