guest/gralloc: Fix build error

The error I was seeing with local build was

---
  device/google/cuttlefish_common/guest/hals/gralloc//legacy/gralloc_vsoc_priv.h:163:3: error: use of undeclared identifier 'memset'
     memset(out, 0, sizeof(*out));
     ^
  1 error generated.
---

Bug: None
Test: aosp_cf_x86_64-userdebug builds

Change-Id: I722da1c0913d910df7eb7e814199a06de80d47a8
Signed-off-by: Sandeep Patil <sspatil@google.com>
diff --git a/guest/hals/gralloc/legacy/gralloc_vsoc_priv.h b/guest/hals/gralloc/legacy/gralloc_vsoc_priv.h
index a324f3a..ed0c72b 100644
--- a/guest/hals/gralloc/legacy/gralloc_vsoc_priv.h
+++ b/guest/hals/gralloc/legacy/gralloc_vsoc_priv.h
@@ -16,6 +16,7 @@
  */
 #include <stdint.h>
 #include <limits.h>
+#include <string.h>
 #include <sys/cdefs.h>
 #include <sys/mman.h>
 #include <hardware/gralloc.h>