Accidently exported a C++ function in a plain C accessible part.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4613 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-09-11 00:27:11 +00:00
parent 23a4187a2b
commit ebe8f6bba7

View File

@ -78,9 +78,11 @@ extern "C" {
extern status_t vfs_init(stage2_args *args);
extern status_t mount_boot_file_systems();
extern status_t add_partitions_for(int fd);
extern int open_node(Node *node, int mode);
#ifdef __cplusplus
// this function is only available in C++
extern int open_node(Node *node, int mode);
}
#endif