Avoiding <stdint.h> if not available. Trying to use <inttypes.h> in that case.
This commit is contained in:
parent
d6e29681da
commit
413e9f9579
@ -12,7 +12,13 @@
|
||||
|
||||
|
||||
/* for uint8_t */
|
||||
#ifdef HAVE_STDINT_H
|
||||
#include <stdint.h>
|
||||
#else
|
||||
#ifdef HAVE_INTTYPES_H
|
||||
#include <inttypes.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* For emulated TOC of overwriteable media.
|
||||
Provides minimal info for faking a struct burn_toc_entry.
|
||||
|
@ -1 +1 @@
|
||||
#define Xorriso_timestamP "2011.01.17.092111"
|
||||
#define Xorriso_timestamP "2011.01.18.154443"
|
||||
|
Loading…
Reference in New Issue
Block a user