home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / MPW / GCC 1.37.1r15 / Tests / bigstruct.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-05  |  194 b   |  16 lines  |  [TEXT/MPS ]

  1. /* Test of large structure copies and suchlike. */
  2.  
  3. struct bigstruct {
  4.     long slot1[10];
  5.     long slot2[30];
  6. } glob1, glob2;
  7.  
  8. main()
  9. {
  10.     int arr[50] = {1, 2, 3};
  11.     
  12.     glob1 = glob2;
  13.  
  14.     return arr[3];
  15. }
  16.