25dc253d6a
* Fixed trivial merge conflict in src/system/libroot/posix/locale/nl_langinfo.cpp * Fixed gcc 2 compilation of src/system/glue/init_term_dyn.c. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39571 a95241bf-73f2-0310-859d-f6bbb57e9c96
19 lines
398 B
C
19 lines
398 B
C
/*
|
|
* Copyright 2003-2006, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef INIT_TERM_DYN_H
|
|
#define INIT_TERM_DYN_H
|
|
|
|
|
|
#include <image.h>
|
|
|
|
|
|
void __haiku_init_before(image_id id);
|
|
void __haiku_init_after(image_id id);
|
|
void __haiku_term_before(image_id id);
|
|
void __haiku_term_after(image_id id);
|
|
|
|
|
|
#endif /* INIT_TERM_DYN_H */
|