blob: 7ec9b61fdd54499a20066a4e295ed25c95d77952 (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | #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);
#endif
 |