version 1.4, 2025/03/09 19:14:25
|
version 1.7, 2025/03/24 04:13:11
|
Line 24
|
Line 24
|
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* |
* |
* $Log$ |
* $Log$ |
|
* Revision 1.7 2025/03/24 04:13:11 snw |
|
* Replace action macro dat with fra_dat to avoid symbol conflict on OS/2 |
|
* |
|
* Revision 1.6 2025/03/24 01:33:30 snw |
|
* Guard declaration of time function in global_bltin.c for portability |
|
* |
|
* Revision 1.5 2025/03/22 22:52:24 snw |
|
* Add STRLEN_GBL macro to manage global string length |
|
* |
* Revision 1.4 2025/03/09 19:14:25 snw |
* Revision 1.4 2025/03/09 19:14:25 snw |
* First phase of REUSE compliance and header reformat |
* First phase of REUSE compliance and header reformat |
* |
* |
Line 95 static void panic (void);
|
Line 104 static void panic (void);
|
#define BOTTOM 6 |
#define BOTTOM 6 |
#define DATA 8 |
#define DATA 8 |
|
|
#if !defined(__OpenBSD__) && !defined(_AIX) && !defined(__osf__) && !defined(MSDOS) && !defined(__vax__) |
#if !defined(__OpenBSD__) && !defined(_AIX) && !defined(__osf__) && !defined(MSDOS) && !defined(__vax__) && !defined(__OS2__) |
long time (); |
long time (); |
#endif |
#endif |
|
|
Line 684 reopen:
|
Line 693 reopen:
|
return; |
return; |
} |
} |
|
|
if (action == dat || action == zdata) { |
if (action == fra_dat || action == zdata) { |
data[0] = '0'; |
data[0] = '0'; |
data[1] = EOL1; |
data[1] = EOL1; |
|
|
Line 1250 s20:
|
Line 1259 s20:
|
break; |
break; |
|
|
|
|
case dat: |
case fra_dat: |
|
|
data[0] = '0'; |
data[0] = '0'; |
data[1] = EOL1; |
data[1] = EOL1; |
Line 1606 s20:
|
Line 1615 s20:
|
} |
} |
|
|
zref[j++] = ch0; |
zref[j++] = ch0; |
|
|
|
|
if (j >= 252) { |
if (j >= 252) { |
zref[j] = EOL; |
zref[j] = EOL; |