diff options
author | yenatch <yenatch@gmail.com> | 2017-06-24 19:02:02 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2017-06-24 19:02:02 -0400 |
commit | 0fbc74a8c7596455b1cf33e1ff8c499215e1c1e1 (patch) | |
tree | 17edb04dcd0fd09d0d14459ea5566093305b04dd | |
parent | 44baefce065e05e276ae4adcec28a4f78fe78d82 (diff) |
Fix implicit stdint
-rw-r--r-- | tools/md5.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/md5.c b/tools/md5.c index 9f6473d2c..e043e8537 100644 --- a/tools/md5.c +++ b/tools/md5.c @@ -1,6 +1,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <stdint.h> #include "common.h" |