File: allocator.c

package info (click to toggle)
coreutils 8.13-3.5
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 55,728 kB
  • sloc: sh: 213,455; ansic: 89,030; perl: 5,972; makefile: 1,695; yacc: 1,249; python: 25; 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 };