Skip to content

Commit

Permalink
Couple more missing prototypes
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdelisle committed Oct 5, 2020
1 parent 7260aa2 commit dbb8f6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions client/cjdroute2.c
Expand Up @@ -596,6 +596,7 @@ static String* getPipePath(Dict* config, struct Allocator* alloc)
}

// This is invoked from cjdroute.rs
int cjdroute2_main(int argc, char** argv);
int cjdroute2_main(int argc, char** argv)
{
#ifdef Log_KEYS
Expand Down
2 changes: 1 addition & 1 deletion crypto/random/randombytes.c
Expand Up @@ -18,7 +18,7 @@

#include <unistd.h>

int randombytes_main();
int randombytes_main(void);
int randombytes_main()
{
struct Allocator* alloc = MallocAllocator_new(1<<20);
Expand Down

0 comments on commit dbb8f6b

Please sign in to comment.