~ubuntu-branches/ubuntu/trusty/pvm/trusty-proposed

« back to all changes in this revision

Viewing changes to libfpvm/WIN32/Pvmfpack.c

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2006-08-09 00:00:40 UTC
  • mfrom: (2.1.5 dapper)
  • Revision ID: james.westby@ubuntu.com-20060809000040-16kh33tmxx2em716
Tags: 3.4.5-7
Build with SHELL=/bin/bash in debian/rules; fixes FTBFS when /bin/sh
isn't bash. (Closes: #379543)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
/* $Id: Pvmfpack.c,v 1.2 1998/09/21 20:26:58 pvmsrc Exp $ */
 
2
/* $Id: Pvmfpack.c,v 1.3 1999/12/10 15:22:14 pvmsrc Exp $ */
3
3
 
4
4
#ifdef WIN32
5
5
#include "..\..\include\pvm3.h"
35
35
        case INTEGER4:
36
36
                *info = pvm_pkint((int*)vp, *cnt, *std);
37
37
                break;
 
38
        case INTEGER8:
 
39
                *info = pvm_pklong((long*)vp, *cnt, *std);
 
40
                break;
38
41
        case REAL4:
39
42
                *info = pvm_pkfloat((float*)vp, *cnt, *std);
40
43
                break;