summaryrefslogtreecommitdiffstats
path: root/private/crt32/mbstring/mbsdup.c
blob: 0e283a04e3566e8348d124756c817fffac79566b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/***
*mbsdup.c - 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 record.
*
*******************************************************************************/

#ifdef _MBCS
#define _strdup _mbsdup
#include <..\string\strdup.c>

#endif	/* _MBCS */