diff options
author | unknowntpo <e850506@gmail.com> | 2020-07-05 11:45:41 +0800 |
---|---|---|
committer | unknowntpo <e850506@gmail.com> | 2020-07-05 11:45:41 +0800 |
commit | 262d5567728abe5c61a0d2b6cccdc48c5d641bee (patch) | |
tree | 9678cb8a02540b051872d53c5893e1e0dab927c9 /kilo.c | |
parent | 7709a04ae8520c5b04d261616098cebf742f5a23 (diff) | |
download | filo-262d5567728abe5c61a0d2b6cccdc48c5d641bee.tar.gz filo-262d5567728abe5c61a0d2b6cccdc48c5d641bee.zip |
Fixing the ‘UINT32_MAX’ undeclared problem
This commit fix the ‘UINT32_MAX’ undeclared problem in Linux
I mentioned in the issue #67 by including <stdint.h>
Diffstat (limited to 'kilo.c')
-rw-r--r-- | kilo.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -41,6 +41,7 @@ #include <termios.h> #include <stdlib.h> #include <stdio.h> +#include <stdint.h> #include <errno.h> #include <string.h> #include <ctype.h> |