X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fhashtable%2Futils.h;h=a8c8de20ff897ce13459e1336df1c5fc507c5812;hb=4878de5c7deb512bbdac4fdfc498907efa06fb7c;hp=44f80ce4fb2b65a585f59626d3ba20e470208d3c;hpb=7966af5763c4aaca39df9bbfa9277ff15715c720;p=lttng-tools.git diff --git a/src/common/hashtable/utils.h b/src/common/hashtable/utils.h index 44f80ce4f..a8c8de20f 100644 --- a/src/common/hashtable/utils.h +++ b/src/common/hashtable/utils.h @@ -1,7 +1,7 @@ /* - * Copyright (C) 2011 David Goulet + * Copyright (C) 2011 EfficiOS Inc. * - * SPDX-License-Identifier: GPL-2.0-only + * SPDX-License-Identifier: LGPL-2.1-only * */ @@ -10,10 +10,6 @@ #include -#ifdef __cplusplus -extern "C" { -#endif - unsigned long hash_key_ulong(const void *_key, unsigned long seed); unsigned long hash_key_u64(const void *_key, unsigned long seed); unsigned long hash_key_str(const void *key, unsigned long seed); @@ -23,8 +19,4 @@ int hash_match_key_u64(const void *key1, const void *key2); int hash_match_key_str(const void *key1, const void *key2); int hash_match_key_two_u64(const void *key1, const void *key2); -#ifdef __cplusplus -} -#endif - #endif /* _LTT_HT_UTILS_H */