summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-11-20 02:57:19 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-11-20 02:57:19 +0000
commitf10a9991c873dcf2dbfc349791434bf7829b7c05 (patch)
treeb02bcdf6365a44c2c59bb2e3fc4967539d0bad50 /cpukit
parent2004-11-19 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-f10a9991c873dcf2dbfc349791434bf7829b7c05.tar.bz2
2004-11-20 Ralf Corsepius <ralf.corsepiu@rtems.org>
* libcsupport/include/stdint.h: Move mal-placed comment.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/libcsupport/include/stdint.h7
2 files changed, 7 insertions, 4 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 69e78c41ca..e96283947b 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2004-11-20 Ralf Corsepius <ralf.corsepiu@rtems.org>
+
+ * libcsupport/include/stdint.h: Move mal-placed comment.
+
2004-11-10 Joel Sherrill <joel@oarcorp.com>
* include/rtems/pci.h: BSPs use the name BSP_pci_configuration not pci.
diff --git a/cpukit/libcsupport/include/stdint.h b/cpukit/libcsupport/include/stdint.h
index 02cc5f19e0..ec282655c9 100644
--- a/cpukit/libcsupport/include/stdint.h
+++ b/cpukit/libcsupport/include/stdint.h
@@ -232,8 +232,7 @@ typedef unsigned long uintptr_t;
#undef __EXP
-/* Macros for minimum-width integer constant expressions */
-
+/** Macros for minimum-width integer constant expressions */
#define INT8_C(x) x
#define UINT8_C(x) x##U
@@ -248,7 +247,6 @@ typedef unsigned long uintptr_t;
#define UINT32_C(x) x##U
#endif
-/* Macros for greatest-width integer constant expression */
#if __int64_t_defined
#if __rtems_longlong64
#define INT64_C(x) x##LL
@@ -259,6 +257,7 @@ typedef unsigned long uintptr_t;
#endif
#endif
+/** Macros for greatest-width integer constant expression */
#if __rtems_longlong64
#define INTMAX_C(x) x##LL
#define UINTMAX_C(x) x##ULL
@@ -272,4 +271,4 @@ typedef unsigned long uintptr_t;
}
#endif
-#endif
+#endif /* _STDINT_H */