Enable auto-deps in all of Folly
[folly.git] / folly / portability / Config.h
index a506f906f3786e11dfdecd610cdd181cd65818f3..67dab0448e51ca515f9caca3bc39fee0fc001a6b 100755 (executable)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Facebook, Inc.
+ * Copyright 2017 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 #ifdef FOLLY_PLATFORM_CONFIG
 #include FOLLY_PLATFORM_CONFIG
 #endif
+
+#if FOLLY_HAVE_FEATURES_H
+#include <features.h> // @manual
+#endif
+
+#ifdef __ANDROID__
+#include <android/api-level.h> // @manual
+#endif
+
+#ifdef __APPLE__
+#include <Availability.h> // @manual
+#endif