From: Ben Pfaff Date: Sat, 2 Jun 2007 22:02:32 +0000 (+0000) Subject: Clean up after a forgotten part of patch #5829. X-Git-Tag: v0.6.0~464 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db9ed71f03b40f4828151de69aad0da6189da830;p=pspp-builds.git Clean up after a forgotten part of patch #5829. * casedeque.h: Remove unused file. * automake.mk: Remove casedeque.h from sources. --- diff --git a/src/data/ChangeLog b/src/data/ChangeLog index d95fd00d..cb1085b3 100644 --- a/src/data/ChangeLog +++ b/src/data/ChangeLog @@ -1,3 +1,11 @@ +2007-06-02 Ben Pfaff + + Clean up after a forgotten part of patch #5829. + + * casedeque.h: Remove unused file. + + * automake.mk: Remove casedeque.h from sources. + 2007-05-10 Jason Stover * category.c: Removed redundant #include diff --git a/src/data/automake.mk b/src/data/automake.mk index e3c83e1d..ea02d2e0 100644 --- a/src/data/automake.mk +++ b/src/data/automake.mk @@ -13,7 +13,6 @@ src_data_libdata_a_SOURCES = \ src/data/case-source.c \ src/data/case-source.h \ src/data/case.c \ - src/data/casedeque.h \ src/data/casefilter.c \ src/data/casefilter.h \ src/data/casefile.h \ diff --git a/src/data/casedeque.h b/src/data/casedeque.h deleted file mode 100644 index 189b5142..00000000 --- a/src/data/casedeque.h +++ /dev/null @@ -1,27 +0,0 @@ -/* PSPP - computes sample statistics. - Copyright (C) 2007 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 the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - 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., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ - -#ifndef DATA_CASEDEQUE_H -#define DATA_CASEDEQUE_H 1 - -#include -#include - -DEQUE_DECLARE (casedeque, struct ccase) - -#endif /* data/casedeque.h */