// Rowley MSP430 C Compiler
//
// Copyright (c) 2001, 2002 Rowley Associates Limited.
//
// This file may be distributed under the terms of the License Agreement
// provided with this software.
//
// THIS FILE IS PROVIDED AS IS WITH NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

#ifndef __inttypes_H
#define __inttypes_H

#define PRId8 "%d"
#define PRIi8 "%i"
#define PRIo8 "%o"
#define PRIu8 "%u"
#define PRIx8 "%x"
#define PRIX8 "%X"

#define PRId16 "%d"
#define PRIi16 "%i"
#define PRIo16 "%o"
#define PRIu16 "%u"
#define PRIx16 "%x"
#define PRIX16 "%X"

#define PRId32 "%ld"
#define PRIi32 "%li"
#define PRIo32 "%lo"
#define PRIu32 "%lu"
#define PRIx32 "%lx"
#define PRIX32 "%lX"

#define PRId64 "%lld"
#define PRIi64 "%lli"
#define PRIo64 "%llo"
#define PRIu64 "%llu"
#define PRIx64 "%llx"
#define PRIX64 "%llX"

#endif