--- freem/src/mlib.c 2025/03/09 19:50:47 1.3 +++ freem/src/mlib.c 2025/03/24 04:13:11 1.4 @@ -1,5 +1,5 @@ /* - * $Id: mlib.c,v 1.3 2025/03/09 19:50:47 snw Exp $ + * $Id: mlib.c,v 1.4 2025/03/24 04:13:11 snw Exp $ * Function prototypes, structs, and macros for FreeM * binding library * @@ -25,6 +25,9 @@ * along with FreeM. If not, see . * * $Log: mlib.c,v $ + * Revision 1.4 2025/03/24 04:13:11 snw + * Replace action macro dat with fra_dat to avoid symbol conflict on OS/2 + * * Revision 1.3 2025/03/09 19:50:47 snw * Second phase of REUSE compliance and header reformat * @@ -266,19 +269,19 @@ short freem_data(freem_ref_t *ref) case MREF_RT_LOCAL: // call into the symbol table - symtab (dat, key, result); + symtab (fra_dat, key, result); ref->status = merr (); break; case MREF_RT_GLOBAL: // call into the FreeM global handler; result in &result - global (dat, key, result); + global (fra_dat, key, result); ref->status = merr (); break; case MREF_RT_SSVN: // call into the SSVN code - ssvn (dat, key, result); + ssvn (fra_dat, key, result); ref->status = merr (); break;