test-001-pre.c

Go to the documentation of this file.
00001 #include "config.h"
00002 
00003 #include "headers.h"
00004 
00005 int main(int argc, char *argv[])
00006 {
00007         int out = 0;
00008         char *buffer = "Hello World\n";
00009 #ifdef DEBUG
00010         int debug = 1;
00011 
00012         while (debug);
00013 #endif
00014 
00015         out = STDOUT_FILENO;
00016         write(out, buffer, strlen(buffer));
00017         sleep(5);
00018         write(out, buffer, strlen(buffer));
00019         close(out);
00020 
00021         return(0);
00022 }
00023 

Generated on Thu Jun 28 09:13:03 2007 for bar by  doxygen 1.5.1