changeset 4589:8346556d2c88

Remove trailing blanks.
author Jim Meyering <jim@meyering.net>
date Mon, 18 Aug 2003 08:52:17 +0000
parents c0c002593bca
children 006a978a5d9f
files lib/vasnprintf.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lib/vasnprintf.c
+++ b/lib/vasnprintf.c
@@ -39,12 +39,12 @@
 #include "printf-parse.h"
 
 /* For those losing systems which don't have 'alloca' we have to add
-   some additional code emulating it.  */ 
-#ifdef HAVE_ALLOCA 
+   some additional code emulating it.  */
+#ifdef HAVE_ALLOCA
 # define freea(p) /* nothing */
 #else
-# define alloca(n) malloc (n) 
-# define freea(p) free (p) 
+# define alloca(n) malloc (n)
+# define freea(p) free (p)
 #endif
 
 #ifdef HAVE_WCHAR_T