- Move source code from `trunk` into program root directory. - Update build files and include paths. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden.
9 lines
204 B
C
Executable File
9 lines
204 B
C
Executable File
#ifndef _UNCONST_H_
|
|
#define _UNCONST_H_
|
|
|
|
#ifndef unconst
|
|
#define unconst(__v, __t) __extension__ ({union { const __t __cp; __t __p; } __q; __q.__cp = __v; __q.__p;})
|
|
#endif
|
|
|
|
#endif // _UNCONST_H_
|