Deleted Added
full compact
crt1_c.c (146371) crt1_c.c (151072)
1/* LINTLIBRARY */
2/*-
3 * Copyright 1996-1998 John D. Polstra.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 90 unchanged lines hidden (view full) ---

99 _init_tls();
100
101#ifdef GCRT
102 atexit(_mcleanup);
103#endif
104 atexit(_fini);
105#ifdef GCRT
106 monstartup(&eprol, &etext);
1/* LINTLIBRARY */
2/*-
3 * Copyright 1996-1998 John D. Polstra.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 90 unchanged lines hidden (view full) ---

99 _init_tls();
100
101#ifdef GCRT
102 atexit(_mcleanup);
103#endif
104 atexit(_fini);
105#ifdef GCRT
106 monstartup(&eprol, &etext);
107__asm__("eprol:");
107#endif
108 _init();
109 exit( main(argc, argv, env) );
110}
111
108#endif
109 _init();
110 exit( main(argc, argv, env) );
111}
112
112#ifdef GCRT
113__asm__(".text");
114__asm__("eprol:");
115__asm__(".previous");
116#endif
117
118__asm__(".ident\t\"$FreeBSD: head/lib/csu/i386-elf/crt1.c 146371 2005-05-19 07:36:07Z dfr $\"");
113__asm__(".ident\t\"$FreeBSD: head/lib/csu/i386-elf/crt1.c 151072 2005-10-07 22:13:17Z bde $\"");