Don't add underscore prefix to amd64 symbols
[reactos.git] / reactos / tools / rbuild / backend / msvc / msvcmaker.cpp
index 1a7d171..82bd3ee 100644 (file)
@@ -12,9 +12,9 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #ifdef _MSC_VER
@@ -108,11 +108,11 @@ MSVCBackend::_generate_dsp ( const Module& module )
                        string file = path + std::string("\\") + files[i]->file.name;
 
                        source_files.push_back ( file );
-                       if ( !_stricmp ( Right(file,2).c_str(), ".c" ) )
+                       if ( !stricmp ( Right(file,2).c_str(), ".c" ) )
                                c_srcs.push_back ( file );
-                       if ( !_stricmp ( Right(file,2).c_str(), ".h" ) )
+                       if ( !stricmp ( Right(file,2).c_str(), ".h" ) )
                                header_files.push_back ( file );
-                       if ( !_stricmp ( Right(file,3).c_str(), ".rc" ) )
+                       if ( !stricmp ( Right(file,3).c_str(), ".rc" ) )
                                resource_files.push_back ( file );
                }
                const vector<Include*>& incs = data.includes;