diff options
author | Salvatore Sanfilippo <antirez@gmail.com> | 2020-07-05 11:16:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-05 11:16:13 +0200 |
commit | 69c3ce609d1e8df3956cba6db3d296a7cf3af3de (patch) | |
tree | 9678cb8a02540b051872d53c5893e1e0dab927c9 | |
parent | 7709a04ae8520c5b04d261616098cebf742f5a23 (diff) | |
parent | 262d5567728abe5c61a0d2b6cccdc48c5d641bee (diff) | |
download | filo-69c3ce609d1e8df3956cba6db3d296a7cf3af3de.tar.gz filo-69c3ce609d1e8df3956cba6db3d296a7cf3af3de.zip |
Merge pull request #68 from unknowntpo/master
Fixing the ‘UINT32_MAX’ undeclared problem
-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> |