Index: src/shared/platform_posix.h |
diff --git a/src/shared/platform_posix.h b/src/shared/platform_posix.h |
index ac234d47441f4ad0eca35c9a5770ab6d4629c8ae..340aed035f816a087cf9c90705305b99f9807153 100644 |
--- a/src/shared/platform_posix.h |
+++ b/src/shared/platform_posix.h |
@@ -9,7 +9,7 @@ |
#error Do not include platform_posix.h directly; use platform.h instead. |
#endif |
-#if defined(FLETCH_TARGET_OS_POSIX) |
+#if defined(DARTINO_TARGET_OS_POSIX) |
#include <errno.h> |
#include <pthread.h> |
@@ -20,7 +20,7 @@ |
#define MAXPATHLEN PATH_MAX |
#endif |
-namespace fletch { |
+namespace dartino { |
// Forward declare [Platform::GetMicroseconds]. |
namespace Platform { |
@@ -77,8 +77,8 @@ class MonitorImpl { |
pthread_cond_t cond_; // Pthread condition for POSIX platforms. |
}; |
-} // namespace fletch |
+} // namespace dartino |
-#endif // defined(FLETCH_TARGET_OS_POSIX) |
+#endif // defined(DARTINO_TARGET_OS_POSIX) |
#endif // SRC_SHARED_PLATFORM_POSIX_H_ |