- Timestamp:
- May 14, 2003, 7:50:26 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/emximp/emximp.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r138 r139 168 168 { 169 169 void *p; 170 170 171 171 p = malloc (n); 172 172 if (p == NULL) … … 179 179 { 180 180 void *q; 181 181 182 182 q = realloc (p, n); 183 183 if (q == NULL) … … 190 190 { 191 191 char *p; 192 192 193 193 p = xmalloc (strlen (s) + 1); 194 194 strcpy (p, s); … … 214 214 char *nargv[5]; 215 215 int rc; 216 216 217 217 if (out_file != NULL) 218 218 { … … 258 258 struct lib *lp1, *lp2; 259 259 char name[512], cmd[512]; 260 260 261 261 if (pipe_flag) 262 262 { … … 720 720 721 721 aout_init (); 722 sprintf (tmp2, "_%s", func_name); 722 /* #425: Underscore is gone. (was "_%s") */ 723 sprintf (tmp2, "%s", func_name); 723 724 if (profile_flag && strncmp (func_name, "_16_", 4) != 0) 724 725 { … … 1044 1045 struct predef *pp1; 1045 1046 char *q, *ext, *opt_o; 1046 1047 1047 1048 _response (&argc, &argv); 1048 1049 predefs = NULL; out_base = NULL; as_name = NULL; pipe_flag = FALSE; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.