added automake.mk files in src/language
[pspp] / src / weight.c
index c95b7910b28ff5d81365074ea0f800d2a6746354..f1326f09d25fc6a70e99670b9ab68266f6c826f2 100644 (file)
@@ -14,8 +14,8 @@
 
    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. */
 
 #include <config.h>
 #include "error.h"
 #include "str.h"
 #include "var.h"
 
-/* WEIGHT transformation. */
-struct weight_trns
-  {
-    struct trns_header h;
-    int src;                   /* `value' index of weighting variable. */
-    int dest;                  /* `value' index of $WEIGHT. */
-  };
+#include "gettext.h"
+#define _(msgid) gettext (msgid)
 
 int
 cmd_weight (void)