summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknowntpo <e850506@gmail.com>2020-07-05 11:45:41 +0800
committerunknowntpo <e850506@gmail.com>2020-07-05 11:45:41 +0800
commit262d5567728abe5c61a0d2b6cccdc48c5d641bee (patch)
tree9678cb8a02540b051872d53c5893e1e0dab927c9
parent7709a04ae8520c5b04d261616098cebf742f5a23 (diff)
downloadfilo-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>
-rw-r--r--kilo.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kilo.c b/kilo.c
index 8729852..406eb7b 100644
--- a/kilo.c
+++ b/kilo.c
@@ -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>