diff --git a/src/emx/src/emxomf/emxomfld.c b/src/emx/src/emxomf/emxomfld.c
index 3e756e40..147e2141 100755
a
|
b
|
static int def_2_watcom(struct _md *md, const _md_stmt *stmt, _md_token token, v
|
1330 | 1330 | break; |
1331 | 1331 | |
1332 | 1332 | case _MD_IMPORTS: |
1333 | | fprintf (response_file, "IMPORT '%s' '%s'", stmt->import.internalname, |
| 1333 | fprintf (response_file, "IMPORT '%s' '%s'", |
| 1334 | stmt->import.internalname[0] ? |
| 1335 | stmt->import.internalname : stmt->import.entryname, |
1334 | 1336 | stmt->import.modulename); |
1335 | 1337 | if (stmt->import.flags & _MDEP_ORDINAL) |
1336 | 1338 | fprintf (response_file, ".%d", stmt->import.ordinal); |