1/*-
2 * Copyright 1996-1998 John D. Polstra.
3 * All rights reserved.
4 * Copyright (c) 1995 Christopher G. Demetriou
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 *    must display the following acknowledgement:
17 *      This product includes software developed by Christopher G. Demetriou
18 *    for the NetBSD Project.
19 * 4. The name of the author may not be used to endorse or promote products
20 *    derived from this software without specific prior written permission
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 *
33 * $FreeBSD$
34 */
35
36#include <sys/cdefs.h>
37__FBSDID("$FreeBSD$");
38
39#ifndef __GNUC__
40#error "GCC is needed to compile this file"
41#endif
42
43#include <stdlib.h>
44#include "libc_private.h"
45#include "crtbrand.c"
46
47struct Struct_Obj_Entry;
48struct ps_strings;
49
50#ifndef NOSHARED
51extern int _DYNAMIC;
52#pragma weak _DYNAMIC
53#endif
54
55extern void _init(void);
56extern void _fini(void);
57extern int main(int, char **, char **);
58
59#ifdef GCRT
60extern void _mcleanup(void);
61extern void monstartup(void *, void *);
62extern int eprol;
63extern int etext;
64#endif
65
66char **environ;
67const char *__progname = "";
68
69void __start(char **, void (*)(void), struct Struct_Obj_Entry *, struct ps_strings *);
70
71/* The entry function. */
72void
73__start(char **ap,
74	void (*cleanup)(void),			/* from shared loader */
75	struct Struct_Obj_Entry *obj __unused,	/* from shared loader */
76	struct ps_strings *ps_strings __unused)
77{
78	int argc;
79	char **argv;
80	char **env;
81
82	argc = * (long *) ap;
83	argv = ap + 1;
84	env  = ap + 2 + argc;
85	if (environ == NULL)
86		environ = env;
87	if (argc > 0 && argv[0] != NULL) {
88		const char *s;
89		__progname = argv[0];
90		for (s = __progname; *s != '\0'; s++)
91			if (*s == '/')
92				__progname = s + 1;
93	}
94
95#ifndef NOSHARED
96	if (&_DYNAMIC != NULL)
97		atexit(cleanup);
98#endif
99#ifdef GCRT
100	atexit(_mcleanup);
101#endif
102	atexit(_fini);
103#ifdef GCRT
104	monstartup(&eprol, &etext);
105#endif
106#ifndef NOGPREL
107	_init();
108#endif
109	exit( main(argc, argv, env) );
110}
111
112#ifdef GCRT
113__asm__(".text");
114__asm__("eprol:");
115__asm__(".previous");
116#endif
117