summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/timespec.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 17:46:39 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 17:46:39 +0000
commit484a76996eeb65ad726b65946642516c70b3257b (patch)
tree6aed4eba45d4eb704f004622ecbf63e275bb876c /cpukit/score/include/rtems/score/timespec.h
parent2008-09-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-484a76996eeb65ad726b65946642516c70b3257b.tar.bz2
Convert to "bool".
Diffstat (limited to 'cpukit/score/include/rtems/score/timespec.h')
-rw-r--r--cpukit/score/include/rtems/score/timespec.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/score/timespec.h b/cpukit/score/include/rtems/score/timespec.h
index 9a27f708bd..e7b17e871d 100644
--- a/cpukit/score/include/rtems/score/timespec.h
+++ b/cpukit/score/include/rtems/score/timespec.h
@@ -43,7 +43,7 @@ extern "C" {
* @return This method returns true if @a time is valid and
* false otherwise.
*/
-boolean _Timespec_Is_valid(
+bool _Timespec_Is_valid(
const struct timespec *time
);
@@ -57,7 +57,7 @@ boolean _Timespec_Is_valid(
* @return This method returns true if @a lhs is less than the @a rhs and
* false otherwise.
*/
-boolean _Timespec_Less_than(
+bool _Timespec_Less_than(
const struct timespec *lhs,
const struct timespec *rhs
);
@@ -72,7 +72,7 @@ boolean _Timespec_Less_than(
* @return This method returns true if @a lhs is greater than the @a rhs and
* false otherwise.
*/
-boolean _Timespec_Greater_than(
+bool _Timespec_Greater_than(
const struct timespec *lhs,
const struct timespec *rhs
);