~ubuntu-branches/debian/sid/postgresql-9.3/sid

« back to all changes in this revision

Viewing changes to src/interfaces/ecpg/test/preproc/struct.h

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2013-05-08 05:39:52 UTC
  • Revision ID: package-import@ubuntu.com-20130508053952-1j7uilp7mjtrvq8q
Tags: upstream-9.3~beta1
ImportĀ upstreamĀ versionĀ 9.3~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
struct mytype
 
2
{
 
3
        int                     id;
 
4
        char            t[64];
 
5
        double          d1;                             /* dec_t */
 
6
        double          d2;
 
7
        char            c[30];
 
8
};
 
9
typedef struct mytype MYTYPE;
 
10
 
 
11
struct mynulltype
 
12
{
 
13
        int                     id;
 
14
        int                     t;
 
15
        int                     d1;
 
16
        int                     d2;
 
17
        int                     c;
 
18
};
 
19
typedef struct mynulltype MYNULLTYPE;