diff --git a/testsuites/samples/ChangeLog b/testsuites/samples/ChangeLog index a390f4123b..c062e1bb3d 100644 --- a/testsuites/samples/ChangeLog +++ b/testsuites/samples/ChangeLog @@ -1,3 +1,8 @@ +2007-04-13 Ralf Corsépius + + * nsecs/init.c: Remove private decl of _Timespec_Subtract use the + version from rtems/score/timespec.h. + 2007-04-05 Joel Sherrill * nsecs/init.c: Provide timespec manipulation routines in the diff --git a/testsuites/samples/nsecs/init.c b/testsuites/samples/nsecs/init.c index d95617f1a4..f4f74203a3 100644 --- a/testsuites/samples/nsecs/init.c +++ b/testsuites/samples/nsecs/init.c @@ -20,6 +20,7 @@ #include #include #include +#include /* _Timespec_Substract */ char *my_ctime( time_t t ) { @@ -35,12 +36,6 @@ void subtract_em( struct timespec *t ) { - extern void _Timespec_Subtract( - const struct timespec *start, - const struct timespec *end, - struct timespec *result - ); - t->tv_sec = 0; t->tv_nsec = 0; _Timespec_Subtract( start, stop, t );