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 2e24e7f2eff31a65d0472fae932c132ef43c5341..55c4772adf4bd2b677879cf6070a37978987a1ca 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 a565301bfe7cb97e70ec62d540ba1e31ff2399bc..6122cc58b05d87da38d9f11f9dbcd849113c5b31 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