view vutilities.c @ 134:a9b72021f053

Distributed memory management w/o free requests working
author Merten Sach <msach@mailbox.tu-berlin.de>
date Fri, 16 Sep 2011 16:19:24 +0200
parents 13b22ffb8a2f
children
line source
1 /*
2 * Copyright 2009 OpenSourceCodeStewardshipFoundation.org
3 * Licensed under GNU General Public License version 2
4 *
5 * Author: seanhalle@yahoo.com
6 *
7 * Created on November 14, 2009, 9:07 PM
8 */
10 #include <malloc.h>
11 #include <stdlib.h>
12 #include <string.h>
14 #include "VMS.h"
17 inline char *
18 VMS__strDup( char *str )
19 { char *retStr;
21 retStr = VMS__malloc( strlen(str) + 1 );
22 if( str == NULL ) return str;
23 strcpy( retStr, str );
25 return retStr;
26 }