aboutsummaryrefslogtreecommitdiff
path: root/c/README.md
diff options
context:
space:
mode:
authorFangrui Song <[email protected]>2022-04-09 09:57:40 -0700
committerJack O'Connor <[email protected]>2022-04-09 11:00:17 -0700
commit9114ff8ed1818f1d9831f1b8963a469b2f9e9438 (patch)
treecc2c0708264254045e49e9071bac44412946e5b8 /c/README.md
parent4393a9b79c4d39c6836010a8b5f1a04d069e4521 (diff)
add prototypes to fix -Wstrict-prototypes warnings
Diffstat (limited to 'c/README.md')
-rw-r--r--c/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/README.md b/c/README.md
index 6807bee..ad8e5fb 100644
--- a/c/README.md
+++ b/c/README.md
@@ -13,7 +13,7 @@ result:
#include <string.h>
#include <unistd.h>
-int main() {
+int main(void) {
// Initialize the hasher.
blake3_hasher hasher;
blake3_hasher_init(&hasher);