File: allocator.c

package info (click to toggle)
diffutils 1%3A3.7-3
  • links: PTS
  • area: main
  • in suites: buster
  • size: 13,108 kB
  • sloc: ansic: 73,660; sh: 10,159; perl: 450; makefile: 213; sed: 16
file content (5 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (82)
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 };