summaryrefslogtreecommitdiff
path: root/PACE/tests/Stdio_Test.c
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/tests/Stdio_Test.c')
-rw-r--r--PACE/tests/Stdio_Test.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/PACE/tests/Stdio_Test.c b/PACE/tests/Stdio_Test.c
index c1c68b57279..88c38965a16 100644
--- a/PACE/tests/Stdio_Test.c
+++ b/PACE/tests/Stdio_Test.c
@@ -19,20 +19,18 @@
/* ===================================================================== */
#include "pace/stdio.h"
-#include "pace/unistd.h"
const char * filename = "temp";
const char * mode = "w+";
const char * string1 = "line 1\n";
const char * success = "SUCCEEDED";
const char * failure = "***FAILED***";
-const int SLEEPTIME = 20;
int
main (int argc, char **argv)
{
/* Test creating/opening a file. */
- PACE_FILE *file;
+ FILE *file;
int retval;
char* retval2;
char buffer[256];
@@ -111,14 +109,5 @@ main (int argc, char **argv)
printf("pace_fclose %s\n", success);
-
- /* use this to pause the program to test the size of the exe
- * Cntr-Alt-Del and then look at the task manager to
- * find the size
- */
- pace_sleep (SLEEPTIME);
-
- PACE_UNUSED_ARG (argc);
- PACE_UNUSED_ARG (argv);
return 0;
}