summaryrefslogtreecommitdiffstats
path: root/alloc_re.c
diff options
context:
space:
mode:
Diffstat (limited to 'alloc_re.c')
-rw-r--r--alloc_re.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/alloc_re.c b/alloc_re.c
new file mode 100644
index 0000000..feb8b49
--- /dev/null
+++ b/alloc_re.c
@@ -0,0 +1,17 @@
1#include "alloc.h"
2#include "byte.h"
3
4int alloc_re(x,m,n)
5char **x;
6unsigned int m;
7unsigned int n;
8{
9 char *y;
10
11 y = alloc(n);
12 if (!y) return 0;
13 byte_copy(y,m,*x);
14 alloc_free(*x);
15 *x = y;
16 return 1;
17}