start.c 434 B

1234567891011
  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. This file should be prepared to be the first thing in the text section (on
  6. Unix systems), or otherwise appropriately special. */
  7. /* The first piece of initialized data. */
  8. int __data_start = 0;
  9. weak_alias (__data_start, data_start)