Removed trailing whitespace in C source and header files.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11052 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/drd/drd_malloc_wrappers.c b/drd/drd_malloc_wrappers.c
index d380ecc..13988ee 100644
--- a/drd/drd_malloc_wrappers.c
+++ b/drd/drd_malloc_wrappers.c
@@ -225,7 +225,7 @@
       {
          /* Copy from old to new. */
          VG_(memcpy)(p_new, p_old, mc->size);
-         
+
          /* Free old memory. */
          VG_(cli_free)(p_old);
          if (mc->size > 0)
@@ -243,7 +243,7 @@
       {
          /* Allocation failed -- leave original block untouched. */
       }
-   }  
+   }
 
    return p_new;
 }
@@ -346,7 +346,7 @@
    DRD_Chunk* mc;
    SizeT     nblocks = 0;
    SizeT     nbytes  = 0;
-   
+
    if (VG_(clo_verbosity) == 0)
       return;
    if (VG_(clo_xml))
@@ -360,10 +360,10 @@
       nbytes += mc->size;
    }
 
-   VG_(message)(Vg_DebugMsg, 
+   VG_(message)(Vg_DebugMsg,
                 "malloc/free: in use at exit: %lu bytes in %lu blocks.\n",
                 nbytes, nblocks);
-   VG_(message)(Vg_DebugMsg, 
+   VG_(message)(Vg_DebugMsg,
                 "malloc/free: %lu allocs, %lu frees, %lu bytes allocated.\n",
                 s_cmalloc_n_mallocs,
                 s_cmalloc_n_frees, s_cmalloc_bs_mallocd);