home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / prog / c / rconfig.lha / RConfig_v1.1 / tests / 3a / test3a.c < prev   
C/C++ Source or Header  |  1992-09-20  |  535b  |  26 lines

  1. /*
  2.  * RConfig Validation Suite by Anthon Pang, Omni Communications Products
  3.  *
  4.  * Object Code: better stkchk (stack check)
  5.  * Assigned Test # 3a
  6.  * Requirements: Compile with -bs -bd -at; process result with "stkchker"
  7.  *   Use small stack (less than 16K)
  8.  * Desired Observation(s):
  9.  *   Should abort before corrupting memory outside of stack space, but
  10.  *   not easily verified.  (ie revise this test)
  11.  */
  12.  
  13. #include <stdio.h>
  14.  
  15. #include "rlib.h"
  16.  
  17. void main() {
  18.     char x[16384];
  19.  
  20.     x[0] = 'X';
  21.  
  22.     puts("Done.\n");
  23.  
  24.     exit(0);
  25. }
  26.