Rename rtems_test_print() into rtems_test_printf()

This commit is contained in:
Sebastian Huber
2016-06-21 14:22:35 +02:00
parent a33bfb6cb1
commit f153157410
2 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,7 @@ int rtems_test_end(void);
*
* @returns As specified by printf().
*/
int rtems_test_print(const char* format, ...) RTEMS_PRINTFLIKE(1, 2);
int rtems_test_printf(const char* format, ...) RTEMS_PRINTFLIKE(1, 2);
/**
* @brief Internal context for parallel job execution.

View File

@@ -34,7 +34,7 @@ int rtems_test_end(void)
);
}
int rtems_test_print(
int rtems_test_printf(
const char* format,
...
)