Blame csu/start.c

Packit 6c4009
/* This file should define the low-level program entry point,
Packit 6c4009
   which should set up `__environ', and then do:
Packit 6c4009
     __libc_init(argc, argv, __environ);
Packit 6c4009
     exit(main(argc, argv, __environ));
Packit 6c4009
Packit 6c4009
   This file should be prepared to be the first thing in the text section (on
Packit 6c4009
   Unix systems), or otherwise appropriately special.  */
Packit 6c4009
Packit 6c4009
/* The first piece of initialized data.  */
Packit 6c4009
int __data_start = 0;
Packit 6c4009
weak_alias (__data_start, data_start)