aboutsummaryrefslogtreecommitdiffstats
path: root/vbe.c
diff options
context:
space:
mode:
authorYour Name <you@example.com>2018-11-28 21:28:45 +0100
committerYour Name <you@example.com>2018-11-28 21:28:45 +0100
commitfd388c864c11d501eb84d5405a949dfe3b67c58a (patch)
treea2cd8b2493a808ff7813a91e86b1bc26de540c28 /vbe.c
parent8cac773d0c47ddcbfc6071e8b70a7b35811d7f15 (diff)
downloadmonitor-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
Diffstat (limited to 'vbe.c')
-rw-r--r--vbe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/vbe.c b/vbe.c
index f79187f..6a53952 100644
--- a/vbe.c
+++ b/vbe.c
@@ -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>