~ubuntu-branches/ubuntu/vivid/adios/vivid-proposed

« back to all changes in this revision

Viewing changes to examples/C/schema/tri2d.c

  • Committer: Package Import Robot
  • Author(s): Alastair McKinstry
  • Date: 2014-06-16 23:06:38 UTC
  • mfrom: (15.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20140616230638-cxryhot6b8ge32l6
Tags: 1.7.0-1
* New upstream release.
* Add adios.pc pkgconfig file. adios_config now uses this.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
#include <stdio.h>
11
11
#include <stdlib.h>
12
12
#include <string.h>
13
 
#include <malloc.h>
14
13
#include <unistd.h>
15
14
#include <fcntl.h>
16
15
#include <errno.h>
35
34
 
36
35
int processArgs(int argc, char ** argv)
37
36
{
38
 
    int i, j, nd, prod;
39
 
    char *end;
40
37
    if (argc < 3) {
41
38
        printUsage (argv[0]);
42
39
        return 1;
78
75
    int         i,j;
79
76
  
80
77
    /* ADIOS variables declarations for matching gwrite_temperature.ch */
81
 
    int         adios_err;
82
78
    uint64_t    adios_groupsize, adios_totalsize;
83
79
    int64_t     adios_handle;
84
80