Avoiding <stdint.h> if not available. Trying to use <inttypes.h> in that case.

This commit is contained in:
Thomas Schmitt 2011-01-18 15:44:44 +00:00
parent 62e5f84fc5
commit 2e447207a8
2 changed files with 7 additions and 1 deletions

View File

@ -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.

View File

@ -1 +1 @@
#define Xorriso_timestamP "2011.01.17.092111"
#define Xorriso_timestamP "2011.01.18.154443"