Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / libpspp / alloc.c
index a7b20283f38588f7fd7f955f692c0d624e4eff29..916a42e4a2036f92d4f0b224968fd5b32108f36a 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
-   Written by Ben Pfaff <blp@gnu.org>.
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -26,7 +25,7 @@
    Returns a null pointer if the memory cannot be obtained,
    including the case where N * S overflows the range of size_t. */
 void *
-nmalloc (size_t n, size_t s) 
+nmalloc (size_t n, size_t s)
 {
   return !xalloc_oversized (n, s) ? malloc (n * s) : NULL;
 }