summaryrefslogtreecommitdiffstats
path: root/fastboot
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2013-01-23 19:13:43 -0800
committerColin Cross <ccross@android.com>2013-01-23 19:13:43 -0800
commit81c632e4dacb14c4afa8a1f166faa1bbacce4d8f (patch)
tree236cd4eb410aec2bfc38365bef067fd346312cfa /fastboot
parent2447afdb9ee2607b932805bd2efd8006242f4d62 (diff)
downloadsystem_core-81c632e4dacb14c4afa8a1f166faa1bbacce4d8f.zip
system_core-81c632e4dacb14c4afa8a1f166faa1bbacce4d8f.tar.gz
system_core-81c632e4dacb14c4afa8a1f166faa1bbacce4d8f.tar.bz2
fastboot: add errno.h to fix windows build
The removal of extra headers from ext4_utils.h removed an indirect include of errno.h that breaks building with USE_MINGW=1. Change-Id: Ic8448db97b5c056a139dc836e1d6f3aaafb917c9
Diffstat (limited to 'fastboot')
-rw-r--r--fastboot/engine.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fastboot/engine.c b/fastboot/engine.c
index 6c636cd..8d46991 100644
--- a/fastboot/engine.c
+++ b/fastboot/engine.c
@@ -29,6 +29,7 @@
#include "fastboot.h"
#include "make_ext4fs.h"
+#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>