blob: 8159c28745aee5a0b5a82158f60ca0b5b8ab899b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- lib/queue.h.orig 2025-08-27 06:21:35 UTC
+++ lib/queue.h
@@ -36,7 +36,8 @@
* @(#)queue.h 8.5 (Berkeley) 8/20/94
*/
-#pragma once
+#ifndef _SYS_QUEUE_H_
+#define _SYS_QUEUE_H_
/*
* This file defines five types of data structures: singly-linked lists,
@@ -506,3 +507,5 @@ struct { \
else \
(elm2)->field.cqe_prev->field.cqe_next = (elm2); \
} while (0)
+
+#endif /* !_SYS_QUEUE_H_ */
|