Remove trailing blanks.
authorJim Meyering <jim@meyering.net>
Mon, 18 Aug 2003 08:52:17 +0000 (08:52 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 18 Aug 2003 08:52:17 +0000 (08:52 +0000)
lib/vasnprintf.c

index de1224a77e8749df755c2f1497b4240e4b746d1c..8eb950551d0206fca5f417ae0c7f365f879782ae 100644 (file)
 #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