Browse Source

Add PRId64 & PRIu64 macros when not defined int inttypes.h

pull/11/head
gkostka 9 years ago
parent
commit
5819cc9f59
  1. 10
      lwext4/ext4_debug.h

10
lwext4/ext4_debug.h

@ -46,6 +46,16 @@
#include <stdint.h>
#include <stdio.h>
#include <inttypes.h>
#ifndef PRIu64
#define PRIu64 "llu"
#endif
#ifndef PRId64
#define PRId64 "lld"
#endif
#define DEBUG_BALLOC (1 << 0)
#define DEBUG_BCACHE (1 << 1)

Loading…
Cancel
Save