Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / data / make-file.h
index 88fa879b49b017a5070b301da13e59fe4573f8a6..67d0d2160f7df039a9097a2fea6c52180bbfa7da 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 2004 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
 #define MKFILE_H
 
 
-/* Creates a temporary file and stores its name in *FILENAME and
+/* Creates a temporary file and stores its name in *FILE_NAME and
    a file descriptor for it in *FD.  Returns success.  Caller is
-   responsible for freeing *FILENAME. */
-int make_temp_file (int *fd, char **filename); 
+   responsible for freeing *FILE_NAME. */
+int make_temp_file (int *fd, char **file_name);
 
 
-/* Creates a temporary file and stores its name in *FILENAME and
+/* Creates a temporary file and stores its name in *FILE_NAME and
    a file stream for it in *FP.  Returns success.  Caller is
-   responsible for freeing *FILENAME. */
-int make_unique_file_stream (FILE **fp, char **filename) ;
+   responsible for freeing *FILE_NAME. */
+int make_unique_file_stream (FILE **fp, char **file_name) ;
 
 #endif /* make-file.h */