Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion benchmark.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ static volatile bool finished = false;

/** interruptBench is used to stop the current benchmark */
static void
interruptBench() {
interruptBench(int signo) {
(void)signo;
finished = true;
}

Expand Down
3 changes: 2 additions & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@

/** alarmInterrupt is used to print out the progress at specific intervals */
static void
alarmInterrupt() {
alarmInterrupt(int signo) {
(void)signo;
if(!printProgress())
alarm(PRINTERVAL);
}
Expand Down
2 changes: 1 addition & 1 deletion md5.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
#define CC 0x98badcfe
#define DD 0x10325476

static void (*md5_50_variant)();
static void (*md5_50_variant)(uint8_t *msg, const unsigned int msgLen);
static void md5_50f(uint8_t *msg, const unsigned int msgLen);
static void md5_50s(uint8_t *msg, const unsigned int msgLen);

Expand Down