2004-11-20 Ralf Corsepius <ralf.corsepiu@rtems.org>

* libcsupport/include/stdint.h: Move mal-placed comment.
This commit is contained in:
Ralf Corsepius
2004-11-20 02:57:19 +00:00
parent 46ce08dbed
commit f10a9991c8
2 changed files with 7 additions and 4 deletions
+4
View File
@@ -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.
+3 -4
View File
@@ -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 */