summaryrefslogtreecommitdiff
path: root/bindings/linux/inttypes.h
blob: e7a6e4263c470c156b9fe60fa8be470b0edd7c64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * upb - a minimalist implementation of protocol buffers.
 *
 * Copyright (c) 2012 Google Inc.  See LICENSE for details.
 * Author: Josh Haberman <jhaberman@gmail.com>
 */

#ifndef PRId64
#define PRId64 "ld"
#endif

#ifndef PRIu64
#define PRIu64 "lu"
#endif

#ifndef PRId32
#define PRId32 "d"
#endif

#ifndef PRIu32
#define PRIu32 "u"
#endif
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback