summaryrefslogtreecommitdiff
path: root/src/xmalloc.h
blob: 64713719088acc4be67243305cf0e8c9a3d8069b (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _OAUTH_XMALLOC_H
#define _OAUTH_XMALLOC_H      1 

/* Prototypes for functions defined in xmalloc.c  */
void *xmalloc (size_t size);
void *xcalloc (size_t nmemb, size_t size);
void *xrealloc (void *ptr, size_t size);
char *xstrdup (const char *s);
void xfree(void *ptr);

#endif