Avoiding <stdint.h> if not available. Trying to use <inttypes.h> in that case.
This commit is contained in:
parent
62e5f84fc5
commit
2e447207a8
@ -12,7 +12,13 @@
|
|||||||
|
|
||||||
|
|
||||||
/* for uint8_t */
|
/* for uint8_t */
|
||||||
|
#ifdef HAVE_STDINT_H
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#else
|
||||||
|
#ifdef HAVE_INTTYPES_H
|
||||||
|
#include <inttypes.h>
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
/* For emulated TOC of overwriteable media.
|
/* For emulated TOC of overwriteable media.
|
||||||
Provides minimal info for faking a struct burn_toc_entry.
|
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