home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume27
/
distributed-c-2.1
/
part01
/
examples
/
test
/
chris.dc
< prev
next >
Wrap
Text File
|
1993-12-22
|
307b
|
33 lines
/* xdr.dc */
typedef struct s0_t {
int a;
} S0T, S00T;
typedef S00T STRUCT0;
typedef STRUCT0 struct0;
typedef struct s1_t {
struct0 a;
float b;
} S1T;
typedef struct s2_t {
unsigned int a;
float b;
S1T s1;
} S2T;
process spec P1(S2T par1);
process body P1(par1)
{
/* nothing */
}
main()
{
}