diff options
Diffstat (limited to 'protocols/Twitter/oauth/src/xmalloc.h')
-rw-r--r-- | protocols/Twitter/oauth/src/xmalloc.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/protocols/Twitter/oauth/src/xmalloc.h b/protocols/Twitter/oauth/src/xmalloc.h new file mode 100644 index 0000000000..7ec9b61fdd --- /dev/null +++ b/protocols/Twitter/oauth/src/xmalloc.h @@ -0,0 +1,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 |