summaryrefslogtreecommitdiff
path: root/boilerplate/cairo-boilerplate-system.h
diff options
context:
space:
mode:
authorM Joonas Pihlaja <jpihlaja@cc.helsinki.fi>2010-06-24 14:59:18 +0300
committerM Joonas Pihlaja <jpihlaja@cc.helsinki.fi>2010-06-24 15:02:53 +0300
commitb036a09972a19e63a85a4661a457525e2abe4026 (patch)
tree660c24352ee1e32b10556c3938bee09964d9a45a /boilerplate/cairo-boilerplate-system.h
parent616e35d1fae703dc118ce503d25d4f57cfd16dfd (diff)
downloadcairo-b036a09972a19e63a85a4661a457525e2abe4026.tar.gz
whitespace: Fixup formal arguments and tabs in boilerplate/ and perf/.
Ran a script to align the formal parameters of functions and collapse spaces to tabs in code.
Diffstat (limited to 'boilerplate/cairo-boilerplate-system.h')
-rw-r--r--boilerplate/cairo-boilerplate-system.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/boilerplate/cairo-boilerplate-system.h b/boilerplate/cairo-boilerplate-system.h
index 8c2dbe8a5..28165671b 100644
--- a/boilerplate/cairo-boilerplate-system.h
+++ b/boilerplate/cairo-boilerplate-system.h
@@ -34,15 +34,19 @@ xmalloc (size_t size);
#define xcalloc cairo_boilerplate_xcalloc
void *
-xcalloc (size_t nmemb, size_t size);
+xcalloc (size_t nmemb,
+ size_t size);
#define xrealloc cairo_boilerplate_xrealloc
void *
-xrealloc (void *buf, size_t size);
+xrealloc (void *buf,
+ size_t size);
#define xasprintf cairo_boilerplate_xasprintf
void
-xasprintf (char **strp, const char *fmt, ...) CAIRO_BOILERPLATE_PRINTF_FORMAT(2, 3);
+xasprintf (char **strp,
+ const char *fmt,
+ ...) CAIRO_BOILERPLATE_PRINTF_FORMAT(2, 3);
#define xunlink cairo_boilerplate_xunlink
void