source: rtems/cpukit/include/rtems/stdint.h @ 23c3f72e

4.104.115
Last change on this file since 23c3f72e was 7ecaafa, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/13/06 at 07:21:53

Abandon DEPRECATED_TYPES.

  • Property mode set to 100644
File size: 337 bytes
Line 
1/**
2 * @file  rtems/stdint.h
3 *
4 * Wrapper to <stdint.h>, switching to <inttypes.h> on systems
5 * only having <inttypes.h> (e.g. Solaris-5.7).
6 */
7 
8/*
9 * $Id$
10 */
11
12#ifndef _RTEMS_STDINT_H
13#define _RTEMS_STDINT_H
14
15#include <rtems/score/cpuopts.h>
16
17#if RTEMS_USES_STDINT_H
18#include <stdint.h>
19
20#else
21#include <inttypes.h>
22#endif
23
24#endif
Note: See TracBrowser for help on using the repository browser.