Doxygen Source Code Documentation
        
Main Page   Alphabetical List   Data Structures   File List   Data Fields   Globals   Search   
grabber.c
Go to the documentation of this file.00001 #include <stdio.h>
00002 #include <stdlib.h>
00003 
00004 #define MEG (1 << 20)
00005 
00006 int main( int argc , char * argv[] )
00007 {
00008    int ii , jj ;
00009    char * qqq ;
00010 
00011    for( ii=1 ; ; ii++ ){
00012       fprintf(stderr," %d",ii) ;
00013       qqq = (char *) malloc( sizeof(char) * MEG ) ;
00014       for( jj=0 ; jj < MEG ; jj++ ) qqq[jj] = 0 ;
00015    }
00016    exit(0) ;
00017 }