git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Use inttypes.h rather than stdint.h.
@ 2007-01-25 21:11 Jason Riedy
  2007-01-25 21:54 ` Randal L. Schwartz
  2007-01-26  6:55 ` Simon 'corecode' Schubert
  0 siblings, 2 replies; 3+ messages in thread
From: Jason Riedy @ 2007-01-25 21:11 UTC (permalink / raw)
  To: git

Older Solaris machines lack stdint.h but have inttypes.h.
The standard has inttypes.h including stdint.h, so at worst
this pollutes the namespace a bit.

Signed-off-by: Jason Riedy <ejr@cs.berkeley.edu>
---
   There's a simple work-around (-I. and a symlink), so I'll
   understand if this is dropped for being too damn stupid.  But
   I'm pretty sure Solaris 5.8 is still widespread (relatively
   speaking).

 git-compat-util.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/git-compat-util.h b/git-compat-util.h
index bf3ceb8..c1bcb00 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -46,7 +46,7 @@
 #include <arpa/inet.h>
 #include <netdb.h>
 #include <pwd.h>
-#include <stdint.h>
+#include <inttypes.h>
 #undef _ALL_SOURCE /* AIX 5.3L defines a struct list with _ALL_SOURCE. */
 #include <grp.h>
 #define _ALL_SOURCE 1
-- 
1.5.0.rc1.g6f729

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-01-26  6:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-25 21:11 [PATCH] Use inttypes.h rather than stdint.h Jason Riedy
2007-01-25 21:54 ` Randal L. Schwartz
2007-01-26  6:55 ` Simon 'corecode' Schubert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).