Commit 91860165 authored by Bernd Edlinger's avatar Bernd Edlinger
Browse files

Add -Wstrict-prototypes option to --strict-warnings

parent 991f0355
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -125,6 +125,7 @@ my $gcc_devteam_warn = "-DDEBUG_UNUSED"
        . " -Wswitch"
        . " -Wsign-compare"
        . " -Wmissing-prototypes"
        . " -Wstrict-prototypes"
        . " -Wshadow"
        . " -Wformat"
        . " -Wtype-limits"
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ typedef struct ctlog_store_load_ctx_st {
 * Creates an empty context for loading a CT log store.
 * It should be populated before use.
 */
static CTLOG_STORE_LOAD_CTX *ctlog_store_load_ctx_new();
static CTLOG_STORE_LOAD_CTX *ctlog_store_load_ctx_new(void);

/*
 * Deletes a CT log store load context.
+1 −1
Original line number Diff line number Diff line
@@ -150,7 +150,7 @@ void x25519_fe51_mul121666(fe51 h, fe51 f);

typedef uint64_t fe64[4];

int x25519_fe64_eligible();
int x25519_fe64_eligible(void);

/*
 * There are no reference C implementations for this radix.
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@
 */
typedef struct test_info {
    const char *test_case_name;
    int (*test_fn) ();
    int (*test_fn) (void);
    int (*param_test_fn)(int idx);
    int num;