blob: 081e0b708f36b8afc4ec9700bae8ae1a23366bf8 [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#pragma once
#include <stdint.h>
#define PRId8 "d"
#define PRId16 "d"
#define PRId32 "d"
#define PRIu8 "u"
#define PRIu16 "u"
#define PRIu32 "u"
#define PRIx8 "x"
#define PRIx16 "x"
#define PRIx32 "x"
#ifdef __clang__
#define PRIx64 "llx"
#define PRIu64 "llu"
#else
#define PRIx64 "lx"
#define PRIu64 "lu"
#endif