Me@178: /* Me@178: * Copyright 2009 OpenSourceCodeStewardshipFoundation.org Me@178: * Licensed under GNU General Public License version 2 Me@178: * Me@178: * Author: seanhalle@yahoo.com Me@178: * Me@178: * Created on November 14, 2009, 9:07 PM Me@178: */ Me@178: Me@178: #include Me@178: #include Me@178: Me@178: #include "VMS.h" Me@178: Me@178: Me@178: inline char * Me@200: VMS_int__strDup( char *str ) Me@178: { char *retStr; Me@178: Me@200: retStr = VMS_int__malloc( strlen(str) + 1 ); Me@178: if( str == NULL ) return str; Me@178: strcpy( retStr, str ); Me@178: Me@178: return retStr; Me@178: }