| Index: test/win/masm/hello.cc
|
| diff --git a/test/win/compiler-flags/character-set-mbcs.cc b/test/win/masm/hello.cc
|
| similarity index 52%
|
| copy from test/win/compiler-flags/character-set-mbcs.cc
|
| copy to test/win/masm/hello.cc
|
| index 3286304730d394fcb5e02d2c0a8dc712523436f3..10b0bcf0d59512ff784d865019dd9534ab99d279 100644
|
| --- a/test/win/compiler-flags/character-set-mbcs.cc
|
| +++ b/test/win/masm/hello.cc
|
| @@ -1,11 +1,9 @@
|
| -// Copyright (c) 2012 Google Inc. All rights reserved.
|
| +// Copyright (c) 2013 Google Inc. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef _MBCS
|
| -#error
|
| -#endif
|
| +extern "C" int dummyfunc(void);
|
|
|
| int main() {
|
| - return 0;
|
| + return dummyfunc();
|
| }
|
|
|