diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2014-09-29 17:01:59 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2014-09-29 17:01:59 +0200 |
commit | b29fafbefd8b195e344bf3fd013a370b7cf930c8 (patch) | |
tree | 2ac297adb6cd97bfc856637d5d35885aaaea3f0b /built_in.h | |
parent | 9556751e3272308b048667e739b1baeeb5a2cbd5 (diff) |
built_in: Remove unused macro force_cast
The macro is unused and explicit cast should be used anyway.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'built_in.h')
-rw-r--r-- | built_in.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -103,10 +103,6 @@ typedef uint8_t u8; #define __is_defined(arg1_or_junk) ___is_defined(arg1_or_junk 1, 0) #define ___is_defined(__ignored, val, ...) val -#ifndef force_cast -# define force_cast(type, arg) ((type) (arg)) -#endif - #ifndef max # define max(a, b) \ ({ \ |