File: allocator.c

package info (click to toggle)
tar 1.30%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 18,352 kB
  • sloc: ansic: 77,395; sh: 52,669; yacc: 1,842; makefile: 479; sed: 16
file content (5 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (84)
1
2
3
4
5
#define _GL_USE_STDLIB_ALLOC 1
#include <config.h>
#include "allocator.h"
#include <stdlib.h>
struct allocator const stdlib_allocator = { malloc, realloc, free, NULL };