Deleted Added
full compact
crt1.c (109908) crt1.c (133754)
1/* LINTLIBRARY */
2/*-
3 * Copyright 2001 David E. O'Brien.
4 * All rights reserved.
5 * Copyright (c) 1995, 1998 Berkeley Software Design, Inc.
6 * All rights reserved.
7 * Copyright 1996-1998 John D. Polstra.
8 * All rights reserved.

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

97 if (*s == '/')
98 __progname = s + 1;
99 }
100
101 __sparc_utrap_setup();
102
103 if (&_DYNAMIC != NULL)
104 atexit(cleanup);
1/* LINTLIBRARY */
2/*-
3 * Copyright 2001 David E. O'Brien.
4 * All rights reserved.
5 * Copyright (c) 1995, 1998 Berkeley Software Design, Inc.
6 * All rights reserved.
7 * Copyright 1996-1998 John D. Polstra.
8 * All rights reserved.

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

97 if (*s == '/')
98 __progname = s + 1;
99 }
100
101 __sparc_utrap_setup();
102
103 if (&_DYNAMIC != NULL)
104 atexit(cleanup);
105 else
106 _init_tls();
105
106#ifdef GCRT
107 atexit(_mcleanup);
108#endif
109 atexit(_fini);
110#ifdef GCRT
111 monstartup(&eprol, &etext);
112#endif
113 _init();
114 exit( main(argc, argv, env) );
115}
116
117#ifdef GCRT
118__asm__(".text");
119__asm__("eprol:");
120__asm__(".previous");
121#endif
122
107
108#ifdef GCRT
109 atexit(_mcleanup);
110#endif
111 atexit(_fini);
112#ifdef GCRT
113 monstartup(&eprol, &etext);
114#endif
115 _init();
116 exit( main(argc, argv, env) );
117}
118
119#ifdef GCRT
120__asm__(".text");
121__asm__("eprol:");
122__asm__(".previous");
123#endif
124
123__asm__(".ident\t\"$FreeBSD: head/lib/csu/sparc64/crt1.c 109908 2003-01-26 23:34:47Z markm $\"");
125__asm__(".ident\t\"$FreeBSD: head/lib/csu/sparc64/crt1.c 133754 2004-08-15 16:18:52Z dfr $\"");