home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / misc / __environ.S next >
Encoding:
Text File  |  1994-09-27  |  373 b   |  25 lines

  1.  
  2. #ifdef __ELF__
  3.  
  4. .globl __environ
  5. .data
  6.  
  7. __environ:
  8.     .long 0
  9. .type __environ,@object
  10. /* FIXME - why is this in assembly code, anyway.  On a 64 bit machine, the
  11. .size will be incorrect, but we currently cannot use difference expressions
  12. in .size pseudo-ops. */
  13. .size __environ,4
  14. .weak environ
  15. environ = __environ
  16. #else
  17.  
  18. .globl ___environ
  19. .data
  20.  
  21. ___environ:
  22.     .long 0
  23.  
  24. #endif
  25.