home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / lyx-0.13.2.tar.gz / lyx-0.13.2.tar / lyx-0.13.2 / src / broken_const.h < prev    next >
C/C++ Source or Header  |  1998-04-23  |  535b  |  21 lines

  1. /* -*- C++ -*- */
  2. /* This file is part of
  3. * ======================================================
  4. *           LyX, the High Level Word Processor
  5. *        
  6. *           Copyright (C) 1995,1996 Matthias Ettrich
  7. *
  8. *======================================================
  9.  broken_const.h -- inhibits the `const' keyword for compilation */
  10.  
  11. #ifdef const
  12. #undef const
  13. #endif /* const */
  14. #define const
  15. #ifdef __CONSTVALUE2
  16. #undef __CONSTVALUE2
  17. #define    __CONSTVALUE2    /* We don't want empty __attribute__ (()). */
  18. #endif /* __CONSTVALUE2 */
  19.  
  20.