Deleted Added
full compact
crt1.c (109905) crt1.c (133754)
1/* LINTLIBRARY */
2/*-
3 * Copyright 2001 David E. O'Brien.
4 * All rights reserved.
5 * Copyright 1996-1998 John D. Polstra.
6 * All rights reserved.
7 * Copyright (c) 1997 Jason R. Thorpe.
8 * Copyright (c) 1995 Christopher G. Demetriou

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

95 __progname = s + 1;
96 }
97
98 if (ps_strings != (struct ps_strings *)0)
99 __ps_strings = ps_strings;
100
101 if (&_DYNAMIC != NULL)
102 atexit(cleanup);
1/* LINTLIBRARY */
2/*-
3 * Copyright 2001 David E. O'Brien.
4 * All rights reserved.
5 * Copyright 1996-1998 John D. Polstra.
6 * All rights reserved.
7 * Copyright (c) 1997 Jason R. Thorpe.
8 * Copyright (c) 1995 Christopher G. Demetriou

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

95 __progname = s + 1;
96 }
97
98 if (ps_strings != (struct ps_strings *)0)
99 __ps_strings = ps_strings;
100
101 if (&_DYNAMIC != NULL)
102 atexit(cleanup);
103 else
104 _init_tls();
103
104#ifdef GCRT
105 atexit(_mcleanup);
106#endif
107 atexit(_fini);
108#ifdef GCRT
109 monstartup(&eprol, &etext);
110#endif
111 _init();
112 exit( main(argc, argv, env) );
113}
114
115#ifdef GCRT
116__asm__(".text");
117__asm__("eprol:");
118__asm__(".previous");
119#endif
120
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
121__asm__(".ident\t\"$FreeBSD: head/lib/csu/powerpc/crt1.c 109905 2003-01-26 23:14:47Z markm $\"");
123__asm__(".ident\t\"$FreeBSD: head/lib/csu/powerpc/crt1.c 133754 2004-08-15 16:18:52Z dfr $\"");