Fix missing include after libc++ update

Upstream libc++ has changed a transitive header dependency. The upstream
PR is here: https://github.com/llvm/llvm-project/pull/80418 and no
longer transitively brought <cstdlib>.

More context can be found at: https://fxbug.dev/324466743

Change-Id: I3fe223d116bc4103d1efb69c0bc47cddbae62494
diff --git a/guest/android-emu/aemu/base/Optional.h b/guest/android-emu/aemu/base/Optional.h
index cb63273..b76f5a1 100644
--- a/guest/android-emu/aemu/base/Optional.h
+++ b/guest/android-emu/aemu/base/Optional.h
@@ -24,6 +24,7 @@
 #include <utility>
 
 #include <cstddef>
+#include <cstdlib>
 
 // Optional<T> - a template class to store an optional value of type T.
 //