diff options
author | Darren Tucker <dtucker@zip.com.au> | 2010-01-09 16:40:48 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2010-01-09 16:40:48 +1100 |
commit | 11b5c07941f206d955184ff1e4c1ff6fba37d157 (patch) | |
tree | d20a2429ade946f463701eff3f325be916c9d72b | |
parent | 709d0ce67201e980258c84928fda46edd1c8d38f (diff) |
- (dtucker) [roaming_client.c] Wrap inttypes.h in an ifdef.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | roaming_client.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -2,6 +2,7 @@ | |||
2 | - (dtucker) Wrap use of IPPROTO_IPV6 in an ifdef for platforms that don't | 2 | - (dtucker) Wrap use of IPPROTO_IPV6 in an ifdef for platforms that don't |
3 | have it. | 3 | have it. |
4 | - (dtucker) [defines.h] define PRIu64 for platforms that don't have it. | 4 | - (dtucker) [defines.h] define PRIu64 for platforms that don't have it. |
5 | - (dtucker) [roaming_client.c] Wrap inttypes.h in an ifdef. | ||
5 | 6 | ||
6 | 20091208 | 7 | 20091208 |
7 | - (dtucker) OpenBSD CVS Sync | 8 | - (dtucker) OpenBSD CVS Sync |
diff --git a/roaming_client.c b/roaming_client.c index cfa57f613..c80db5826 100644 --- a/roaming_client.c +++ b/roaming_client.c | |||
@@ -21,7 +21,9 @@ | |||
21 | #include <sys/types.h> | 21 | #include <sys/types.h> |
22 | #include <sys/socket.h> | 22 | #include <sys/socket.h> |
23 | 23 | ||
24 | #ifdef HAVE_INTTYPES_H | ||
24 | #include <inttypes.h> | 25 | #include <inttypes.h> |
26 | #endif | ||
25 | #include <signal.h> | 27 | #include <signal.h> |
26 | #include <string.h> | 28 | #include <string.h> |
27 | #include <unistd.h> | 29 | #include <unistd.h> |