summaryrefslogtreecommitdiffstats
path: root/private/crt32/mbstring/i386/mbsdup.asm
diff options
context:
space:
mode:
Diffstat (limited to 'private/crt32/mbstring/i386/mbsdup.asm')
-rw-r--r--private/crt32/mbstring/i386/mbsdup.asm16
1 files changed, 16 insertions, 0 deletions
diff --git a/private/crt32/mbstring/i386/mbsdup.asm b/private/crt32/mbstring/i386/mbsdup.asm
new file mode 100644
index 000000000..e818a4cde
--- /dev/null
+++ b/private/crt32/mbstring/i386/mbsdup.asm
@@ -0,0 +1,16 @@
+;***
+;mbsdup.asm - duplicate a string in malloc'd memory
+;
+; Copyright (c) 1985-1991, Microsoft Corporation. All rights reserved.
+;
+;Purpose:
+; defines _mbsdup() - grab new memory, and duplicate the string into it.
+;
+;Revision History:
+; 11-18-92 KRS Identical to strdup. Could just use alias records.
+;
+;*******************************************************************************
+
+_strdup EQU <_mbsdup>
+ include ..\string\i386\strdup.asm
+ end