Skip to content

Commit

Permalink
Renaming methods
Browse files Browse the repository at this point in the history
Signed-off-by: Leanid Astrakou <[email protected]>
  • Loading branch information
DivergentEuropeans committed Aug 9, 2023
1 parent b7e3830 commit 52f3a4c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions c/zos.c
Original file line number Diff line number Diff line change
Expand Up @@ -1480,7 +1480,7 @@ typedef struct WTO2Common31_tag{
char mcsFlags2;
} WTO2Common31;

void message(char *message){
void message2(char *message){

ALLOC_STRUCT31(
STRUCT31_NAME(below2G),
Expand Down Expand Up @@ -1509,7 +1509,7 @@ void message(char *message){
}

#define WTO_MAX_SIZE 126
void wtoPrintf(char *formatString, ...){
void wtoPrintfMetal(char *formatString, ...){
char text[WTO_MAX_SIZE+1]; /* Allow for trailing null character */
va_list argPointer;
int cnt;
Expand Down Expand Up @@ -1546,7 +1546,7 @@ void wtoPrintf(char *formatString, ...){
if (cnt>0 && text[cnt-1] == '\n') /* If text ends with \n */
text[cnt-1] = 0; /* Change it into a null character */

message(text);
message2(text);
}

/* end WTO SECTION */
Expand Down
4 changes: 4 additions & 0 deletions h/zos.h
Original file line number Diff line number Diff line change
Expand Up @@ -1529,6 +1529,10 @@ DSAB *getDSAB(char *ddname);

int dsabIsOMVS(DSAB *dsab);

void message2(char *message);

void wtoPrintfMetal(char *formatString, ...);

int locate(char *dsn, int *volserCount, char *firstVolser);

/*
Expand Down

0 comments on commit 52f3a4c

Please sign in to comment.