File: alloc.h

package info (click to toggle)
freecdb 0.75
  • links: PTS
  • area: main
  • in suites: buster, etch, etch-m68k, jessie, jessie-kfreebsd, lenny, squeeze, stretch, wheezy
  • size: 712 kB
  • ctags: 250
  • sloc: ansic: 1,731; sh: 360; makefile: 57
file content (10 lines) | stat: -rw-r--r-- 153 bytes parent folder | download | duplicates (24)
1
2
3
4
5
6
7
8
9
10
/* Public domain. */

#ifndef ALLOC_H
#define ALLOC_H

extern /*@null@*//*@out@*/char *alloc();
extern void alloc_free();
extern int alloc_re();

#endif