simple program to read/write a text file
Some checks failed
MVS Delete Members / delete-members (push) Failing after 15s
MVS Submit & Execute / upload-and-run (push) Failing after 50s

This commit is contained in:
Greg Gauthier 2026-02-08 14:33:01 +00:00
parent 1ef8f5f48a
commit 7fd140595a
2 changed files with 2 additions and 1 deletions

View File

@ -5,3 +5,4 @@
//STEP1 EXEC GCCCG,INFILE='@05054.SRCLIB.C(TXTWKR01)' //STEP1 EXEC GCCCG,INFILE='@05054.SRCLIB.C(TXTWKR01)'
//GO.TESTDD DD DSN=@05054.DATA(TESTMEM),DISP=OLD //GO.TESTDD DD DSN=@05054.DATA(TESTMEM),DISP=OLD
// //

View File

@ -17,7 +17,7 @@ int main()
fp = fopen("dd:TESTDD", "r+"); fp = fopen("dd:TESTDD", "r+");
if (fp == NULL) if (fp == NULL)
{ {
perror("fopen failed"); perror("fopen failed. Insure the member exists.");
return 1; return 1;
} }