document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /* Are two types/vars the same type (ignoring qualifiers)? */
  2. #ifndef __same_type
  3. # define __same_type(a, b) __builtin_types_compatible_p(typeof(a), typeof(b))
  4. #endif
');