- (dtucker) [roaming_client.c] Wrap inttypes.h in an ifdef.
This commit is contained in:
parent
709d0ce672
commit
11b5c07941
|
@ -2,6 +2,7 @@
|
||||||
- (dtucker) Wrap use of IPPROTO_IPV6 in an ifdef for platforms that don't
|
- (dtucker) Wrap use of IPPROTO_IPV6 in an ifdef for platforms that don't
|
||||||
have it.
|
have it.
|
||||||
- (dtucker) [defines.h] define PRIu64 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
|
20091208
|
||||||
- (dtucker) OpenBSD CVS Sync
|
- (dtucker) OpenBSD CVS Sync
|
||||||
|
|
|
@ -21,7 +21,9 @@
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_INTTYPES_H
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
#endif
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
Loading…
Reference in New Issue