stubs.h 315 B

12345678910111213
  1. /* This file selects the right generated file of `__stub_FUNCTION' macros
  2. based on the architecture being compiled for. */
  3. #include <bits/wordsize.h>
  4. #if __WORDSIZE == 32
  5. # include <gnu/stubs-32.h>
  6. #elif __WORDSIZE == 64
  7. # include <gnu/stubs-64.h>
  8. #else
  9. # error "unexpected value for __WORDSIZE macro"
  10. #endif