xalloc.h: use consistent formatting
authorJim Meyering <meyering@redhat.com>
Tue, 5 Jan 2010 14:10:02 +0000 (15:10 +0100)
committerJim Meyering <meyering@redhat.com>
Tue, 5 Jan 2010 14:10:02 +0000 (15:10 +0100)
* lib/xalloc.h: Move declarations to start in the first column.

ChangeLog
lib/xalloc.h

index 2e24e7f..55c4772 100644 (file)
--- 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
index a565301..6122cc5 100644 (file)
@@ -106,10 +106,10 @@ char *xstrdup (char const *str) ATTRIBUTE_MALLOC;
 # 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