summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/inttypes.h
blob: 376a93f379ef2013b368ee0f5f5fadebb7ebb33a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * @file inttypes.h
 */

/*
 * ISO C99 Format conversion of integer types.
 *
 *  $Id$
 */

#ifndef __INTTYPES_H
#define __INTTYPES_H

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>
#include <sys/_inttypes.h>

#ifdef __cplusplus
}
#endif

#endif