File: mem.h

package info (click to toggle)
multitail 4.2.0-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 660 kB
  • ctags: 812
  • sloc: ansic: 12,046; makefile: 91; sh: 19
file content (4 lines) | stat: -rw-r--r-- 155 bytes parent folder | download | duplicates (2)
1
2
3
4
void * mymalloc(int size, char *what);
void * myrealloc(void *oldp, int newsize, char *what);
void myfree(void *p);
char * mystrdup(char *in, char *what);