We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e23fb83 commit e0b153bCopy full SHA for e0b153b
api/s2n.h
@@ -50,7 +50,7 @@ extern int s2n_error_get_type(int error);
50
struct s2n_config;
51
struct s2n_connection;
52
53
-extern unsigned long s2n_get_openssl_version();
+extern unsigned long s2n_get_openssl_version(void);
54
extern int s2n_init(void);
55
extern int s2n_cleanup(void);
56
extern struct s2n_config *s2n_config_new(void);
utils/s2n_init.c
@@ -24,7 +24,7 @@
24
25
static void s2n_cleanup_atexit(void);
26
27
-unsigned long s2n_get_openssl_version()
+unsigned long s2n_get_openssl_version(void)
28
{
29
return OPENSSL_VERSION_NUMBER;
30
}
0 commit comments