blob: 73ceff5698e6dbb25bae4c2a7029af89ec03e177 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#define _POSIX_C_SOURCE 200809L
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "mapalloc.h"
int main(void)
{
const char buf[] = "THIS IS A CONSTANT STRING";
char *ptr = map_malloc(sizeof(buf));
memcpy(ptr, buf, sizeof(buf));
printf("%p: %s\n", ptr, ptr);
map_free(ptr);
printf("freed\n");
map_free(ptr);
printf("freed again\n");
}
|