fixed nw_misc.c to not overwrite output at line 24 anymore.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr-util/branches/1.4.x@821959 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/test/nw_misc.c b/test/nw_misc.c
index d00ef0e..2c1e5e2 100644
--- a/test/nw_misc.c
+++ b/test/nw_misc.c
@@ -1,6 +1,4 @@
#include <stdlib.h>
-#include <netware.h>
-#include <screen.h>
/*
#include "testutil.h"
*/
@@ -8,12 +6,7 @@
/* function to keep the screen open if not launched from bash */
void _NonAppStop( void )
{
- if (getenv("_IN_NETWARE_BASH_") == NULL) {
- uint16_t row, col;
-
- GetScreenSize(&row, &col);
- gotorowcol(row-1, 0);
- printf("<Press any key to close screen> ");
+ printf("\r\n<Press any key to close screen> ");
getcharacter();
}
}