Merge "asm_*_offsets to define variables as constants" into eider

This commit is contained in:
John Koleszar 2012-06-04 18:54:23 -07:00 committed by Gerrit Code Review
commit 5205d299bb

View File

@ -23,7 +23,7 @@
#define BEGIN int main(void) {
#define END return 0; }
#else
#define DEFINE(sym, val) int sym = val;
#define DEFINE(sym, val) const int sym = val;
#define BEGIN
#define END
#endif