summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-10-22 14:06:33 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-10-22 14:06:33 +0000
commit134191bc992dab8b83de41807bcec5d93eb58eee (patch)
treeb1952a0157c4dc2c45c4e8732af7f41bde39c6a1 /cpukit
parent2004-10-22 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-134191bc992dab8b83de41807bcec5d93eb58eee.tar.bz2
2004-10-22 Ralf Corsepius <ralf_corsepius@rtems.org>
* libcsupport/include/stdint.h: Add intptr_t uintptr_t.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/libcsupport/include/stdint.h3
2 files changed, 7 insertions, 0 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 1333ffaf48..fd34317004 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,9 @@
2004-10-22 Ralf Corsepius <ralf_corsepius@rtems.org>
+ * libcsupport/include/stdint.h: Add intptr_t uintptr_t.
+
+2004-10-22 Ralf Corsepius <ralf_corsepius@rtems.org>
+
* libnetworking/opt_atalk.h, libnetworking/opt_bdg.h,
libnetworking/opt_inet.h, libnetworking/opt_inet6.h,
libnetworking/opt_ipx.h, libnetworking/opt_mac.h,
diff --git a/cpukit/libcsupport/include/stdint.h b/cpukit/libcsupport/include/stdint.h
index 1c2652a5a0..9720cfbba0 100644
--- a/cpukit/libcsupport/include/stdint.h
+++ b/cpukit/libcsupport/include/stdint.h
@@ -28,6 +28,9 @@ typedef unsigned16 uint16_t;
typedef unsigned32 uint32_t;
typedef unsigned64 uint64_t;
+typedef signed long intptr_t;
+typedef unsigned long uintptr_t;
+
#ifdef __cplusplus
}
#endif