X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fpfm-read.h;h=7c9b5e8871522ec99a0b547f869b4e9132dad0cb;hb=a9b6a814534e9da0ef954f0713ec62056b608e39;hp=bb37f1db39488613b7e913450b79934422f09638;hpb=b321086267ad1014dc5d09886396cde30f094437;p=pspp diff --git a/src/pfm-read.h b/src/pfm-read.h index bb37f1db39..7c9b5e8871 100644 --- a/src/pfm-read.h +++ b/src/pfm-read.h @@ -14,14 +14,16 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #ifndef PFM_READ_H #define PFM_READ_H /* Portable file reading. */ +#include "bool.h" + /* Portable file types. */ enum pfm_type { @@ -45,7 +47,7 @@ struct ccase; struct pfm_reader *pfm_open_reader (struct file_handle *, struct dictionary **, struct pfm_read_info *); -int pfm_read_case (struct pfm_reader *, struct ccase *); +bool pfm_read_case (struct pfm_reader *, struct ccase *); void pfm_close_reader (struct pfm_reader *); #endif /* pfm-read.h */