X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdata-io%2Ffile-handle.h;h=e2a2b56ed3f7a22a3cf6259d76a6457ec84b1080;hb=885ac3ed70c6cf89e951792de1b0c991b309b5c4;hp=86518f7327f8a025b3b4ef50b320d1dd2ce89995;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;p=pspp diff --git a/src/language/data-io/file-handle.h b/src/language/data-io/file-handle.h index 86518f7327..e2a2b56ed3 100644 --- a/src/language/data-io/file-handle.h +++ b/src/language/data-io/file-handle.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2010, 2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -14,16 +14,19 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -#if !file_handle_h -#define file_handle_h 1 +#ifndef LANGUAGE_DATA_IO_FILE_HANDLE_H +#define LANGUAGE_DATA_IO_FILE_HANDLE_H 1 -/* File handles. */ +/* Parsing file handles. */ #include #include -#include +#include "data/file-handle-def.h" -struct lexer ; -struct file_handle *fh_parse (struct lexer *, enum fh_referent); +struct lexer; +struct session; -#endif /* !file_handle.h */ +struct file_handle *fh_parse (struct lexer *, enum fh_referent, + struct session *); + +#endif /* language/data-io/file-handle.h */