diff options
author | Your Name <you@example.com> | 2018-11-28 21:28:45 +0100 |
---|---|---|
committer | Your Name <you@example.com> | 2018-11-28 21:28:45 +0100 |
commit | fd388c864c11d501eb84d5405a949dfe3b67c58a (patch) | |
tree | a2cd8b2493a808ff7813a91e86b1bc26de540c28 | |
parent | 8cac773d0c47ddcbfc6071e8b70a7b35811d7f15 (diff) | |
download | monitor-edid-fd388c864c11d501eb84d5405a949dfe3b67c58a.tar monitor-edid-fd388c864c11d501eb84d5405a949dfe3b67c58a.tar.gz monitor-edid-fd388c864c11d501eb84d5405a949dfe3b67c58a.tar.bz2 monitor-edid-fd388c864c11d501eb84d5405a949dfe3b67c58a.tar.xz monitor-edid-fd388c864c11d501eb84d5405a949dfe3b67c58a.zip |
Fix missing stdint include
-rw-r--r-- | vbe.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -7,6 +7,7 @@ #include <stdlib.h> #include <string.h> #include <stdarg.h> +#include <stdint.h> /* for uintptr_t */ #include <stdio.h> #include <assert.h> #include <limits.h> |