From: Jim Meyering Date: Tue, 5 Jan 2010 14:10:02 +0000 (+0100) Subject: xalloc.h: use consistent formatting X-Git-Tag: v0.1~4912 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=28e6fc0a9042637a27233dca31962afd53bbb8cd;p=gnulib.git xalloc.h: use consistent formatting * lib/xalloc.h: Move declarations to start in the first column. --- diff --git a/ChangeLog b/ChangeLog index 2e24e7f2e..55c4772ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-01-05 Jim Meyering + + xalloc.h: use consistent formatting + * lib/xalloc.h: Move declarations to start in the first column. + 2010-01-05 Eric Blake mkdir: avoid xalloc diff --git a/lib/xalloc.h b/lib/xalloc.h index a565301bf..6122cc58b 100644 --- a/lib/xalloc.h +++ b/lib/xalloc.h @@ -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