Changeset 798
- Timestamp:
- Oct 2, 2003, 9:27:28 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/emxomf/emxomfld.c
-
Property cvs2svn:cvs-rev
changed from
1.28
to1.29
r797 r798 483 483 484 484 if (opt_t) 485 fprintf(stderr, "*** LIB=%s\n", tmp);485 fprintf(stderr, "*** %s\n", tmp); 486 486 } 487 487 … … 529 529 if one without the 'lib' prefix was not found. The '.o' and '.a' 530 530 extensions are tried in the last case since otherwise we can find 531 a 'something.a' when 'libsomething.lib' is available. */ 531 a 'something.a' when 'libsomething.lib' is available. 532 533 Returns pointer to file stream and FULLNAME set to it's name on success. 534 Returns NULL and FULLNAME a copy of NAME on failure. 535 */ 532 536 533 537 static FILE *find_objlib (char *fullname, const char *name, int is_library) … … 616 620 break; 617 621 618 /* Find the next LIB component. 622 /* Find the next LIB component. 619 623 We're skipping empty components. */ 620 624 for (;;) … … 636 640 break; 637 641 libpath = x + (*x == ';'); 638 } 642 } 639 643 } while (pathlen); 640 644 645 646 strcpy (fullname, name); 641 647 return NULL; 642 648 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.