Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / data / scratch-handle.c
index 5e3b74adb6f1f07adfa490fecd488abf671c1a51..4c0513f82e0ce40a5730721f2bf6344a706f23ec 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 2006 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
 
 #include <config.h>
 #include <stdlib.h>
-#include "scratch-handle.h"
-#include "casefile.h"
-#include "dictionary.h"
+#include <data/casereader.h>
+#include <data/scratch-handle.h>
+#include <data/dictionary.h>
 
 /* Destroys HANDLE. */
 void
-scratch_handle_destroy (struct scratch_handle *handle) 
+scratch_handle_destroy (struct scratch_handle *handle)
 {
-  if (handle != NULL) 
+  if (handle != NULL)
     {
       dict_destroy (handle->dictionary);
-      casefile_destroy (handle->casefile);
+      casereader_destroy (handle->casereader);
       free (handle);
     }
 }