home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / glibc-1.09 / glibc-1 / glibc-1.09.1 / sysdeps / stub / start.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-19  |  438 b   |  17 lines

  1. /* This file should define the low-level program entry point,
  2.    which should set up `__environ', and then do:
  3.      __libc_init(argc, argv, __environ);
  4.      exit(main(argc, argv, __environ));
  5.  
  6.    This file should be prepared to be the first thing in the text section (on
  7.    Unix systems), or otherwise appropriately special.  */
  8.  
  9. volatile int errno;
  10.  
  11. #ifndef HAVE_GNU_LD
  12. #undef environ
  13. #define __environ environ
  14. #endif
  15.  
  16. char **__environ;
  17.