Skip to content

Commit

Permalink
Post-merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeclerck committed Sep 19, 2024
1 parent 6da9719 commit 55ba79a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions cobc/pplex.l
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ static int ppwrap (void) {
#include <ctype.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <stdio.h>
#include <string.h>
#ifdef HAVE_STRINGS_H
#include <strings.h>
Expand Down
3 changes: 2 additions & 1 deletion cobc/scanner.l
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ static int yywrap (void) {
#include <ctype.h>
#include <limits.h>

#include <stdio.h>
#include <string.h>
#ifdef HAVE_STRINGS_H
#include <strings.h>
Expand Down Expand Up @@ -1391,7 +1392,7 @@ scan_ebcdic_char (int c)
buff, "(1..256)");
return '?';
}
c--; // in ordinal, i.e. 1..256 -> 0..255
c--; /* in ordinal, i.e. 1..256 -> 0..255 */
#ifdef COB_EBCDIC_MACHINE
return (cob_u8_t) c;
#else
Expand Down
2 changes: 1 addition & 1 deletion libcob/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@

2023-01-19 Simon Sobisch <[email protected]>

* call.c (cob_put_s64_param, cob_put_u64_param): switched to common msgid
* call.c->cobcapi.c (cob_put_s64_param, cob_put_u64_param): switched to common msgid
* common.c (cob_sys_getopt_long_long): lower-case msgid

2023-01-18 Simon Sobisch <[email protected]>
Expand Down

0 comments on commit 55ba79a

Please sign in to comment.