home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume4 / spacewar / part06 / tstsz.c < prev    next >
C/C++ Source or Header  |  1988-05-31  |  659b  |  28 lines

  1. /*
  2.  * Spacewar - test size of uio and alternate
  3.  *
  4.  * Copyright 1984 obo Systems, Inc.
  5.  * Copyright 1984 Dan Rosenblatt
  6.  */
  7.  
  8. #include "spacewar.h"
  9. #include "uio.h"
  10. #include "uio2.h"
  11.  
  12. main()
  13. {
  14. #ifdef BSD
  15.     printf("only one uio, nothing to worry about\n");
  16. #else /* VMS SYSIII SYSV */
  17. #ifdef VMS
  18.     printf("only one uio, nothing to worry about\n");
  19. #else /* SYSIII SYSV */
  20.     printf("since there are two uios, they must match in size\n");
  21.     printf("sizeof(uio)(%d) %c= sizeof(uio2)(%d)\n", sizeof(struct uio),
  22.     (sizeof(struct uio) == sizeof(struct uio2)) ? '=' : '!',
  23.     sizeof(struct uio2));
  24. #endif /* VMS SYSIII SYSV */
  25. #endif /* BSD VMS SYSIII SYSV */
  26.     return(0);
  27. }
  28.