Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / libpspp / pool.h
index bc60e3a7a297928faff5dd0330e2aeafcd15aa46..e35961d948e337eacc348173c0b63bdf70e0329c 100644 (file)
@@ -33,7 +33,7 @@
 
 
 /* Records the state of a pool for later restoration. */
-struct pool_mark 
+struct pool_mark
   {
     /* Current block and offset into it. */
     struct pool_block *block;
@@ -64,7 +64,7 @@ void *pool_clone (struct pool *, const void *, size_t) MALLOC_LIKE;
 void *pool_alloc_unaligned (struct pool *, size_t) MALLOC_LIKE;
 void *pool_clone_unaligned (struct pool *, const void *, size_t) MALLOC_LIKE;
 char *pool_strdup (struct pool *, const char *) MALLOC_LIKE;
-char *pool_vasprintf (struct pool *, const char *, va_list) 
+char *pool_vasprintf (struct pool *, const char *, va_list)
      MALLOC_LIKE PRINTF_FORMAT (2, 0);
 char *pool_asprintf (struct pool *, const char *, ...)
      MALLOC_LIKE PRINTF_FORMAT (2, 3);