Made C++ save.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15854 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2006-01-07 03:14:02 +00:00
parent a71974c1f8
commit 4f7d12cf6a
+7
View File
@@ -7,6 +7,10 @@
#include <kernel.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct queue {
void *head;
void *tail;
@@ -33,5 +37,8 @@ int fixed_queue_enqueue(fixed_queue *q, void *e);
void *fixed_queue_dequeue(fixed_queue *q);
void *fixed_queue_peek(fixed_queue *q);
#ifdef __cplusplus
}
#endif
#endif /* _KERNEL_QUEUE_H */