Corrected elf_load_image() prototype; it requires an object of the Directory

class as first argument.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7505 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-05-10 18:57:58 +00:00
parent cdacbf022a
commit 38f5c6bbc4

View File

@ -1,5 +1,5 @@
/*
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef LOADER_ELF_H
@ -10,7 +10,7 @@
#include <boot/vfs.h>
extern status_t elf_load_image(Node *node, const char *path);
extern status_t elf_load_image(Directory *directory, const char *path);
extern status_t elf_load_image(int fd, preloaded_image *image);
#endif /* LOADER_ELF_H */