File: xmalloc.h

package info (click to toggle)
watchdog 5.16-1.2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 988 kB
  • sloc: ansic: 3,827; sh: 1,697; makefile: 87
file content (8 lines) | stat: -rw-r--r-- 164 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
#ifndef _XMALLOC_H
#define _XMALLOC_H

void *xcalloc(size_t nmemb, size_t size);
char *xstrdup(const char *s);
int xusleep(const long usec);

#endif /*_XMALLOC_H*/