File: alloc.h

package info (click to toggle)
procps 1%3A3.2.8-9squeeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,604 kB
  • ctags: 6,449
  • sloc: ansic: 15,505; makefile: 185; sh: 162
file content (14 lines) | stat: -rw-r--r-- 279 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef PROCPS_PROC_ALLOC_H
#define PROCPS_PROC_ALLOC_H

#include "procps.h"

EXTERN_C_BEGIN

extern void *xrealloc(void *oldp, unsigned int size) MALLOC;
extern void *xmalloc(unsigned int size) MALLOC;
extern void *xcalloc(void *pointer, int size) MALLOC;

EXTERN_C_END

#endif