- (dtucker) [roaming_client.c] Wrap inttypes.h in an ifdef.

This commit is contained in:
Darren Tucker 2010-01-09 16:40:48 +11:00
parent 709d0ce672
commit 11b5c07941
2 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@
- (dtucker) Wrap use of IPPROTO_IPV6 in an ifdef for platforms that don't
have it.
- (dtucker) [defines.h] define PRIu64 for platforms that don't have it.
- (dtucker) [roaming_client.c] Wrap inttypes.h in an ifdef.
20091208
- (dtucker) OpenBSD CVS Sync

View File

@ -21,7 +21,9 @@
#include <sys/types.h>
#include <sys/socket.h>
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif
#include <signal.h>
#include <string.h>
#include <unistd.h>