Module: wine Branch: master Commit: b2575ebab655d7737ed8da535b6071fb70bdc23d URL: http://source.winehq.org/git/wine.git/?a=commit;h=b2575ebab655d7737ed8da535b...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Feb 27 17:39:54 2009 +0100
winebuild: Don't prefix local symbols with an underscore.
---
tools/winebuild/utils.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/tools/winebuild/utils.c b/tools/winebuild/utils.c index b5ac1b9..3a29a4b 100644 --- a/tools/winebuild/utils.c +++ b/tools/winebuild/utils.c @@ -659,6 +659,7 @@ const char *asm_name( const char *sym ) { case PLATFORM_APPLE: case PLATFORM_WINDOWS: + if (sym[0] == '.' && sym[1] == 'L') return sym; buffer[0] = '_'; strcpy( buffer + 1, sym ); return buffer;