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