summaryrefslogtreecommitdiff
path: root/src/dynamicInt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dynamicInt.c')
-rw-r--r--src/dynamicInt.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/dynamicInt.c b/src/dynamicInt.c
deleted file mode 100644
index 0b53762..0000000
--- a/src/dynamicInt.c
+++ /dev/null
@@ -1,13 +0,0 @@
-
-#include <stdlib.h>
-#include "main.h"
-#include "dynamicInt.h"
-
-
-int* newInt(int x)
-{
- int *new;
- new = malloc( sizeof(int) );
- *new = x;
- return new;
-}