Deleted Added
full compact
elfos.h (169690) elfos.h (215840)
1/* elfos.h -- operating system specific defines to be used when
2 targeting GCC for some generic ELF system
3 Copyright (C) 1991, 1994, 1995, 1999, 2000, 2001, 2002, 2003, 2004
4 Free Software Foundation, Inc.
5 Based on svr4.h contributed by Ron Guilmette (rfg@netcom.com).
6
7This file is part of GCC.
8

--- 482 unchanged lines hidden (view full) ---

491 } \
492 } \
493 } \
494 \
495 if (bytes_in_chunk > 0) \
496 fprintf ((FILE), "\"\n"); \
497 } \
498 while (0)
1/* elfos.h -- operating system specific defines to be used when
2 targeting GCC for some generic ELF system
3 Copyright (C) 1991, 1994, 1995, 1999, 2000, 2001, 2002, 2003, 2004
4 Free Software Foundation, Inc.
5 Based on svr4.h contributed by Ron Guilmette (rfg@netcom.com).
6
7This file is part of GCC.
8

--- 482 unchanged lines hidden (view full) ---

491 } \
492 } \
493 } \
494 \
495 if (bytes_in_chunk > 0) \
496 fprintf ((FILE), "\"\n"); \
497 } \
498 while (0)
499
500/* A C statement (sans semicolon) to output to the stdio stream STREAM
501 any text necessary for declaring the name of an external symbol
502 named NAME whch is referenced in this compilation but not defined.
503 It is needed to properly support non-default visibility. */
504
505#ifndef ASM_OUTPUT_EXTERNAL
506#define ASM_OUTPUT_EXTERNAL(FILE, DECL, NAME) \
507 default_elf_asm_output_external (FILE, DECL, NAME)
508#endif