home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / progc / fixed300.arj / BUG43.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-25  |  232 b   |  16 lines

  1. #if 0
  2. From:
  3. Subject: Pointers cannot be stored in far segments
  4. Status: Fixed in 2.2
  5. #endif
  6.  
  7. /*_ BUG43.C */
  8. /* array3 is not stored in a far segment    */
  9.  
  10. char far * far array3;
  11.  
  12. void myclass_fred()
  13. {
  14.     array3="this";
  15. };
  16.