[llvm-commits] CVS: llvm/projects/Stacker/lib/runtime/stacker_rt.c

Brian Gaeke gaeke at cs.uiuc.edu
Tue May 11 11:15:05 PDT 2004


Changes in directory llvm/projects/Stacker/lib/runtime:

stacker_rt.c updated: 1.8 -> 1.9

---
Log message:

Use inttypes.h, which exists on all of Linux, Solaris and Darwin.


---
Diffs of the changes:  (+1 -2)

Index: llvm/projects/Stacker/lib/runtime/stacker_rt.c
diff -u llvm/projects/Stacker/lib/runtime/stacker_rt.c:1.8 llvm/projects/Stacker/lib/runtime/stacker_rt.c:1.9
--- llvm/projects/Stacker/lib/runtime/stacker_rt.c:1.8	Tue May 11 09:08:54 2004
+++ llvm/projects/Stacker/lib/runtime/stacker_rt.c	Tue May 11 11:14:53 2004
@@ -20,8 +20,7 @@
 #include <ctype.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stdint.h>
-#include <sys/types.h>
+#include <inttypes.h>
 
 extern int64_t _index_;
 extern int64_t _stack_[];





More information about the llvm-commits mailing list