summaryrefslogtreecommitdiffstats
path: root/cpukit/include
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-12-17 06:41:21 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-12-17 06:41:21 +0000
commit5726c42b3f238828d46ae62b3f007b40da955644 (patch)
tree28d511b21ad37ad4ef9d4f32bd6f0c30c0429eb5 /cpukit/include
parent2008-12-17 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-5726c42b3f238828d46ae62b3f007b40da955644.tar.bz2
Remove (Abandoned).
Diffstat (limited to 'cpukit/include')
-rw-r--r--cpukit/include/rtems/stdint.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/cpukit/include/rtems/stdint.h b/cpukit/include/rtems/stdint.h
deleted file mode 100644
index 54f067a329..0000000000
--- a/cpukit/include/rtems/stdint.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/**
- * @file rtems/stdint.h
- *
- * Wrapper to <stdint.h>, switching to <inttypes.h> on systems
- * only having <inttypes.h> (e.g. Solaris-5.7).
- */
-
-/*
- * $Id$
- */
-
-#ifndef _RTEMS_STDINT_H
-#define _RTEMS_STDINT_H
-
-#include <rtems/score/cpuopts.h>
-
-#if RTEMS_USES_STDINT_H
-#include <stdint.h>
-
-#else
-#include <inttypes.h>
-#endif
-
-#endif