mirror of
https://github.com/cuberite/polarssl.git
synced 2025-08-07 04:36:18 -04:00

Running clang-16 on mbedtls reports warnings of type "-Wstrict-prototypes". This patch fixes these warnings by adding void to functions with no arguments. The generate_test_code.py is modified to insert void into test functions with no arguments in *.function files. Signed-off-by: Gowtham Suresh Kumar <gowtham.sureshkumar@arm.com>
30 lines
825 B
C
30 lines
825 B
C
#if !defined(MBEDTLS_CONFIG_FILE)
|
|
#include "mbedtls/config.h"
|
|
#else
|
|
#include MBEDTLS_CONFIG_FILE
|
|
#endif
|
|
|
|
#if defined(MBEDTLS_HAVE_TIME)
|
|
#include "mbedtls/platform_time.h"
|
|
#endif
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
typedef struct fuzzBufferOffset {
|
|
const uint8_t *Data;
|
|
size_t Size;
|
|
size_t Offset;
|
|
} fuzzBufferOffset_t;
|
|
|
|
#if defined(MBEDTLS_HAVE_TIME)
|
|
mbedtls_time_t dummy_constant_time(mbedtls_time_t *time);
|
|
#endif
|
|
void dummy_init(void);
|
|
|
|
int dummy_send(void *ctx, const unsigned char *buf, size_t len);
|
|
int fuzz_recv(void *ctx, unsigned char *buf, size_t len);
|
|
int dummy_random(void *p_rng, unsigned char *output, size_t output_len);
|
|
int dummy_entropy(void *data, unsigned char *output, size_t len);
|
|
int fuzz_recv_timeout(void *ctx, unsigned char *buf, size_t len,
|
|
uint32_t timeout);
|