move all of the references to app/console to lib/console

This commit is contained in:
Travis Geiselbrecht
2009-01-24 20:12:27 -08:00
parent 0166fb2d09
commit 39dededa26
14 changed files with 21 additions and 21 deletions

View File

@@ -191,8 +191,8 @@ static void validate_memset(void)
}
}
#if defined(WITH_APP_CONSOLE)
#include <app/console.h>
#if defined(WITH_LIB_CONSOLE)
#include <lib/console.h>
static int string_tests(int argc, cmd_args *argv)
{

View File

@@ -23,8 +23,8 @@
#include <app/tests.h>
#include <compiler.h>
#if defined(WITH_APP_CONSOLE)
#include <app/console.h>
#if defined(WITH_LIB_CONSOLE)
#include <lib/console.h>
STATIC_COMMAND_START
{ "printf_tests", NULL, (console_cmd)&printf_tests },