summaryrefslogtreecommitdiff
path: root/ace/os_include/inttypes.h
blob: 29ac74ce8755a078a52f8b2c61d32f8d556e3f2a (plain)
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
26
27
28
29
30
31
32
33
34
35
36
// -*- C++ -*-

//=============================================================================
/**
 *  @file    inttypes.h
 *
 *  fixed size integer types
 *
 *  $Id$
 *
 *  @author Don Hinton <dhinton@ieee.org>
 *  @author This code was originally in various places including ace/OS.h.
 */
//=============================================================================

#ifndef ACE_OS_INCLUDE_INTTYPES_H
#define ACE_OS_INCLUDE_INTTYPES_H

#include "ace/pre.h"

#include "ace/config-all.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "ace/os_include/stdint.h"

#if !defined (ACE_LACKS_INTTYPES_H)
# include /**/ <inttypes.h>
#endif /* !ACE_LACKS_INTTYPES_H */

// @todo if needbe, we can define the macros if they aren't available.


#endif /* ACE_OS_INCLUDE_INTTYPES_H */