2002-10-05 21:04:37 +04:00
|
|
|
/*
|
|
|
|
** Copyright 2002, Manuel J. Petit. All rights reserved.
|
|
|
|
** Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <user_runtime.h>
|
|
|
|
|
|
|
|
|
2003-01-12 20:13:32 +03:00
|
|
|
extern void __init__dlfcn(struct uspace_program_args const *args);
|
|
|
|
extern void __init__image(struct uspace_program_args const *args);
|
2002-10-05 21:04:37 +04:00
|
|
|
|
|
|
|
|
2003-01-12 20:13:32 +03:00
|
|
|
void initialize_before(image_id imageID, struct uspace_program_args const *args);
|
|
|
|
|
2002-10-05 21:04:37 +04:00
|
|
|
void
|
2003-01-12 20:13:32 +03:00
|
|
|
initialize_before(image_id imageID, struct uspace_program_args const *args)
|
2002-10-05 21:04:37 +04:00
|
|
|
{
|
2003-01-12 20:13:32 +03:00
|
|
|
__init__dlfcn(args);
|
|
|
|
__init__image(args);
|
2002-10-05 21:04:37 +04:00
|
|
|
}
|
|
|
|
|