Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - 3905 file blocks exhausted http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 3905                File blocks exhausted
------------------------------------------------------------------------------
 Description
   This error occurs if the compiler's internal table of open files is full.
   The likely reason is having too many nested #include directives, possibly
   by recursively including a header file.

 Solution
   Eliminate the repeated inclusion of the same header file. A way to avoid
   multiply including a header file is to #define a macro that controls its
   processing:

   // test.hdr

   #ifndef HDRINC_TEST          // condition

      #define FALSE .f.         // declarations
      #define TRUE  .t.
      #define PI 3.14159256358

      #define HDRINC_TEST       // define the conditional macro

   #endif // HDRINC_TEST

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson