commit | 592d33505597825d263630a8cadb04611c490656 | [log] [tgz] |
---|---|---|
author | Dan Albert <danalbert@google.com> | Fri Nov 21 11:03:17 2014 -0800 |
committer | Dan Albert <danalbert@google.com> | Fri Nov 21 11:03:17 2014 -0800 |
tree | 3969b9ea376545b23729c0a821c5bc59fdf79456 | |
parent | 5d8a5ade620be65e0e658dbb99e66398f3ffdc74 [diff] |
Add a missing include. Needed following the pthread.h/signal.h cleanup. Change-Id: I9a43732eefdf49ecf769659dee1170626cf8fff9
diff --git a/fastbootd/commands/virtual_partitions.c b/fastbootd/commands/virtual_partitions.c index 813f485..9da4020 100644 --- a/fastbootd/commands/virtual_partitions.c +++ b/fastbootd/commands/virtual_partitions.c
@@ -30,6 +30,9 @@ */ #include "commands/virtual_partitions.h" + +#include <string.h> + #include "debug.h" static struct virtual_partition *partitions = NULL;