]> git.lyx.org Git - lyx.git/blob - src/broken_const.h
white-space changes, removed definitions.h several enum changes because of this,...
[lyx.git] / src / broken_const.h
1 /* -*- C++ -*- */
2 /* This file is part of
3 * ====================================================== 
4
5 *           LyX, the High Level Word Processor
6 *        
7 *           Copyright (C) 1995, 1996 Matthias Ettrich
8 *
9 * ====================================================== 
10  broken_const.h -- inhibits the `const' keyword for compilation */
11
12 #ifdef const
13 #undef const
14 #endif /* const */
15 #define const
16 #ifdef __CONSTVALUE2
17 #undef __CONSTVALUE2
18 #define __CONSTVALUE2   /* We don't want empty __attribute__ (()). */
19 #endif /* __CONSTVALUE2 */
20