fix C++ linkage of global var... it shouldn't be here anyway, but I suppose it's temporary.

This should fix the (gcc4 at least) build.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25697 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol
2008-05-29 11:25:33 +00:00
parent 7195e3d3a7
commit 5bd8987ff0
+8
View File
@@ -175,6 +175,14 @@ struct device_module_info {
status_t (*deselect)(void *cookie, uint8 event, selectsync *sync);
};
#ifdef __cplusplus
extern "C" {
#endif
extern struct device_manager_info *gDeviceManager;
#ifdef __cplusplus
}
#endif
#endif /* _DEVICE_MANAGER_H */