summaryrefslogtreecommitdiff
path: root/protocols/Twitter/oauth/xmalloc.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-06-27 08:42:01 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-06-27 08:42:01 +0000
commit76af3716fe56e728b2cad2df2bec7bb4a5b1c8df (patch)
treeb46e5d15976e4025ce28cd3371eb69d5d7aa9a65 /protocols/Twitter/oauth/xmalloc.h
parent09da3ed6d59beb5bc9bc34eba28e2fc4502415fb (diff)
oauth re-added
git-svn-id: http://svn.miranda-ng.org/main/trunk@650 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter/oauth/xmalloc.h')
-rw-r--r--protocols/Twitter/oauth/xmalloc.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/protocols/Twitter/oauth/xmalloc.h b/protocols/Twitter/oauth/xmalloc.h
new file mode 100644
index 0000000000..7ec9b61fdd
--- /dev/null
+++ b/protocols/Twitter/oauth/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