fix coding rule
[platform/upstream/liboauth.git] / src / xmalloc.h
1 #ifndef _OAUTH_XMALLOC_H
2 #define _OAUTH_XMALLOC_H      1 
3
4 /* Prototypes for functions defined in xmalloc.c  */
5 void *xmalloc(size_t size);
6 void *xcalloc(size_t nmemb, size_t size);
7 void *xrealloc(void *ptr, size_t size);
8 char *xstrdup(const char *s);
9 void xfree(void *ptr);
10
11 #endif