Revert "Only include inttypes.h on platforms for which PRIu64 isn't in stdint.h"
authorJustin Bogner <mail@justinbogner.com>
Tue, 7 Jan 2014 01:46:49 +0000 (01:46 +0000)
committerJustin Bogner <mail@justinbogner.com>
Tue, 7 Jan 2014 01:46:49 +0000 (01:46 +0000)
This reverts commit e7778e08878d0c61903205428eeb131db9d11b3c.

llvm-svn: 198657

compiler-rt/lib/profile/PGOProfiling.c

index 737ba79..6c728dd 100644 (file)
@@ -7,13 +7,10 @@
 |*
 \*===----------------------------------------------------------------------===*/
 
+#include <inttypes.h>
 #include <stdio.h>
 #include <stdlib.h>
 
-#if !defined(__APPLE__)
-#include <inttypes.h>
-#endif
-
 #ifndef _MSC_VER
 #include <stdint.h>
 #else