]> wimlib.net Git - wimlib/blobdiff - include/wimlib/compiler.h
compiler.h: remove typeof
[wimlib] / include / wimlib / compiler.h
index dc0c1c98c6220f5c816ee5b6ac81cd9144cf506e..d164184d2a090eded0fd45db9bb7f2e61b68b6db 100644 (file)
 #  define UNALIGNED_ACCESS_IS_FAST 0
 #endif
 
-/* Get the type of the specified expression.  */
-#define typeof     __typeof__
-
 /* Get the minimum of two variables, without multiple evaluation.  */
 #undef min
 #define min(a, b)  ({ typeof(a) _a = (a); typeof(b) _b = (b); \