Changeset 564ada in git for omalloc/omFindExec.c
- Timestamp:
- Feb 3, 2008, 9:03:14 PM (16 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 65aec99016fb5182feebd8e6770f35881aa3bbb0
- Parents:
- befecbc5f2fd0929fe1c00f9ed52cc5c128a3612
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
omalloc/omFindExec.c
rbefecbc r564ada 4 4 * Author: obachman (Olaf Bachmann) 5 5 * Created: 11/99 6 * Version: $Id: omFindExec.c,v 1.1 0 2001-04-30 09:02:06 SingularExp $6 * Version: $Id: omFindExec.c,v 1.11 2008-02-03 20:03:14 wienand Exp $ 7 7 *******************************************************************/ 8 8 … … 59 59 { 60 60 strcpy(executable, name); 61 #ifdef __CYGWIN__ 62 strcat(executable, ".exe"); 63 #endif 61 64 return executable; 62 65 } … … 81 84 { 82 85 strcpy(executable, tbuf); 86 #ifdef __CYGWIN__ 87 strcat(executable, ".exe"); 88 #endif 83 89 return executable; 84 90 } … … 137 143 #endif 138 144 strcpy(executable, tbuf); 145 #ifdef __CYGWIN__ 146 strcat(executable, ".exe"); 147 #endif 139 148 return executable; 140 149 }
Note: See TracChangeset
for help on using the changeset viewer.