cdbd6d2ad1
Added example for address arithmetic demo using alloc
11 lines
134 B
C
11 lines
134 B
C
|
|
#define ALLOCSIZE 9500
|
|
|
|
static char allocbuf[ALLOCSIZE];
|
|
static char *allocp = allocbuf;
|
|
|
|
|
|
char *alloc(int n);
|
|
|
|
void afree(char *p);
|