commit | 25a29d452e53f46766c2d26e4384c7378db3b571 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Thu Feb 23 10:45:42 2017 -0800 |
committer | Elliott Hughes <enh@google.com> | Thu Feb 23 10:45:42 2017 -0800 |
tree | 78d24e4bb0cebf477e4783fee2c2f013f6c362ec | |
parent | f9962dbfe244e7552f241328d2270efc79ed5ccc [diff] |
Add a missing #include for openat(2). Bug: https://code.google.com/p/android/issues/detail?id=64374 Test: builds Change-Id: I7d7650463197710657820a1adce51f71c1b01415
diff --git a/minui/events.cpp b/minui/events.cpp index 6dd60fe..fa44033 100644 --- a/minui/events.cpp +++ b/minui/events.cpp
@@ -15,6 +15,7 @@ */ #include <dirent.h> +#include <fcntl.h> #include <linux/input.h> #include <stdio.h> #include <stdlib.h>