diff options
Diffstat (limited to 'src/dynamicInt.c')
| -rw-r--r-- | src/dynamicInt.c | 13 |
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; -} |