Changeset 139 for trunk/src


Ignore:
Timestamp:
May 14, 2003, 7:50:26 PM (22 years ago)
Author:
bird
Message:

#415: Removed the underscore added on import for a.out files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/emximp/emximp.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r138 r139  
    168168{
    169169  void *p;
    170  
     170
    171171  p = malloc (n);
    172172  if (p == NULL)
     
    179179{
    180180  void *q;
    181  
     181
    182182  q = realloc (p, n);
    183183  if (q == NULL)
     
    190190{
    191191  char *p;
    192  
     192
    193193  p = xmalloc (strlen (s) + 1);
    194194  strcpy (p, s);
     
    214214  char *nargv[5];
    215215  int rc;
    216  
     216
    217217  if (out_file != NULL)
    218218    {
     
    258258  struct lib *lp1, *lp2;
    259259  char name[512], cmd[512];
    260  
     260
    261261  if (pipe_flag)
    262262    {
     
    720720
    721721  aout_init ();
    722   sprintf (tmp2, "_%s", func_name);
     722  /* #425: Underscore is gone. (was "_%s") */
     723  sprintf (tmp2, "%s", func_name);
    723724  if (profile_flag && strncmp (func_name, "_16_", 4) != 0)
    724725    {
     
    10441045  struct predef *pp1;
    10451046  char *q, *ext, *opt_o;
    1046  
     1047
    10471048  _response (&argc, &argv);
    10481049  predefs = NULL; out_base = NULL; as_name = NULL; pipe_flag = FALSE;
Note: See TracChangeset for help on using the changeset viewer.