home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / gcc / aliases.c next >
Encoding:
C/C++ Source or Header  |  1994-08-10  |  501 b   |  17 lines

  1. #include <gnu-stabs.h>
  2.  
  3. /* Although we keep those functions in the jump table. But we
  4.  * have removed the entry point to outside. So we need the 
  5.  * alias to bypass the jump table.
  6.  */
  7. #if __GNUC__ == 2
  8. #if __GNUC_MINOR__ < 6
  9. symbol_alias (__set_new_handler__LOCAL__,__set_new_handler);
  10. #else
  11. symbol_alias (set_new_handler__LOCAL__,__set_new_handler);
  12. symbol_alias (set_new_handler__LOCAL__,__set_new_handler__LOCAL__);
  13. #endif
  14. #else
  15. #error "Incompatible compiler. Gcc 2.5.x or above expexted."
  16. #endif
  17.