auto import from //depot/cupcake/@135843
diff --git a/simulator/wrapsim/Log.h b/simulator/wrapsim/Log.h
new file mode 100644
index 0000000..024ba44
--- /dev/null
+++ b/simulator/wrapsim/Log.h
@@ -0,0 +1,19 @@
+/*
+ * Copyright 2007 The Android Open Source Project
+ *
+ * Logging.
+ */
+#ifndef _WRAPSIM_LOG_H
+#define _WRAPSIM_LOG_H
+
+
+/*
+ * Log debug info.
+ */
+void wsLog(const char* format, ...)
+ #if defined(__GNUC__)
+ __attribute__ ((format(printf, 1, 2)))
+ #endif
+ ;
+
+#endif /*_WRAPSIM_LOG_H*/