Index: tests/ppapi_example_audio/audio.cc |
diff --git a/tests/ppapi_example_audio/audio.cc b/tests/ppapi_example_audio/audio.cc |
index d6147f34cbf78b1057de8efd756f5c3266cd4138..a35bc41a4dcbb5c20fca1a29e4dba2a2c45e3955 100644 |
--- a/tests/ppapi_example_audio/audio.cc |
+++ b/tests/ppapi_example_audio/audio.cc |
@@ -13,6 +13,7 @@ |
#include <cmath> |
#include <limits> |
#include <string> |
+#include <nacl/nacl_inttypes.h> |
#include "native_client/src/shared/ppapi_proxy/utility.h" |
#include "ppapi/c/pp_bool.h" |
@@ -26,10 +27,6 @@ |
#include "ppapi/cpp/module.h" |
#include "ppapi/cpp/var.h" |
-// Due to a bug in nacl-newlib, this #include has to come last. |
-// See http://code.google.com/p/nativeclient/issues/detail?id=1654 |
-#include <nacl/nacl_inttypes.h> |
- |
// Most of this example is borrowed from ppapi/examples/audio/audio.cc |