summaryrefslogtreecommitdiff
path: root/srclib/apr/test/nw_misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'srclib/apr/test/nw_misc.c')
-rw-r--r--srclib/apr/test/nw_misc.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/srclib/apr/test/nw_misc.c b/srclib/apr/test/nw_misc.c
index d00ef0e0..2c1e5e2b 100644
--- a/srclib/apr/test/nw_misc.c
+++ b/srclib/apr/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();
}
}