File: shell.h

package info (click to toggle)
procmail 3.22-20%2Bdeb7u1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,988 kB
  • sloc: ansic: 9,885; sh: 1,957; makefile: 132
file content (9 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (24)
1
2
3
4
5
6
7
8
9
/*$Id: shell.h,v 1.5 1994/05/26 14:13:41 berg Exp $*/

#ifdef malloc
#undef malloc
#endif
#define malloc(n)	tmalloc((size_t)(n))
#define realloc(p,n)	trealloc(p,(size_t)(n))
#define free(p)		tfree(p)
#define tmemmove(t,f,n) memmove(t,f,(size_t)(n))