7 lines
86 B
C
7 lines
86 B
C
#include <stdlib.h>
|
|
#include "buffer.h"
|
|
|
|
void buffer_free(void* buf) {
|
|
free(buf);
|
|
}
|