Skip to content

Commit bb04c81

Browse files
committed
Add missing include guard
1 parent e9b8495 commit bb04c81

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/utils/utils_concurrency.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
/*
22
*
3-
* Copyright (C) 2023 Intel Corporation
3+
* Copyright (C) 2023-2024 Intel Corporation
44
*
55
* Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT.
66
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
77
*
88
*/
99

10+
#ifndef UMF_UTILS_CONCURRENCY_H
11+
#define UMF_UTILS_CONCURRENCY_H 1
12+
1013
#include <stdio.h>
1114
#include <stdlib.h>
1215
#include <string.h>
@@ -109,3 +112,5 @@ static inline void *Zalloc(size_t s) {
109112
#ifdef __cplusplus
110113
}
111114
#endif
115+
116+
#endif /* UMF_UTILS_CONCURRENCY_H */

0 commit comments

Comments
 (0)