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