changeset 12575:7b84f51e4373

xalloc.h: use consistent formatting * lib/xalloc.h: Move declarations to start in the first column.
author Jim Meyering <meyering@redhat.com>
date Tue, 05 Jan 2010 15:10:02 +0100
parents 275617f39fd2
children 51b39cac47f1
files ChangeLog lib/xalloc.h
diffstat 2 files changed, 9 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-01-05  Jim Meyering  <meyering@redhat.com>
+
+	xalloc.h: use consistent formatting
+	* lib/xalloc.h: Move declarations to start in the first column.
+
 2010-01-05  Eric Blake  <ebb9@byu.net>
 
 	mkdir: avoid xalloc
--- a/lib/xalloc.h
+++ b/lib/xalloc.h
@@ -106,10 +106,10 @@
 # if HAVE_INLINE
 #  define static_inline static inline
 # else
-   void *xnmalloc (size_t n, size_t s) ATTRIBUTE_MALLOC;
-   void *xnrealloc (void *p, size_t n, size_t s);
-   void *x2nrealloc (void *p, size_t *pn, size_t s);
-   char *xcharalloc (size_t n) ATTRIBUTE_MALLOC;
+void *xnmalloc (size_t n, size_t s) ATTRIBUTE_MALLOC;
+void *xnrealloc (void *p, size_t n, size_t s);
+void *x2nrealloc (void *p, size_t *pn, size_t s);
+char *xcharalloc (size_t n) ATTRIBUTE_MALLOC;
 # endif
 
 # ifdef static_inline