xref: /haiku/src/system/runtime_loader/elf_versioning.h (revision 2b76973fa2401f7a5edf68e6470f3d3210cbcff3)
1 /*
2  * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef ELF_VERSIONING_H
6 #define ELF_VERSIONING_H
7 
8 #include "runtime_loader_private.h"
9 
10 
11 status_t	init_image_version_infos(image_t* image);
12 status_t	check_needed_image_versions(image_t* image);
13 
14 
15 #endif	// ELF_VERSIONING_H
16