Blame csu/start.c

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