summaryrefslogtreecommitdiff
path: root/src/dynamicInt.c
blob: 3845d2fd00baf21732adcf1b245f97cf7239dbc3 (plain)
1
2
3
4
5
6
7
8
9
10
11

#include <stdlib.h>
#include "dynamicInt.h"

int* newInt(int x)
{
	int *new;
	new = malloc( sizeof(int) );
	*new = x;
	return new;
}