From: Jan Engelhardt Date: 2025-06-17 12:40:56.762725897 +0200 Don't wrap #include statements in extern "C". This causes problems like ``` /usr/lib64/gcc/x86_64-suse-linux/15/include/omp.h:448:1: error: template with C linkage 448 | template rsb_common.h:32:1: note: ‘extern "C"’ linkage started here 32 | extern "C" { ``` under at least gcc-15. --- rsb_common.h | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) Index: librsb-1.3.0.2/rsb_common.h =================================================================== --- librsb-1.3.0.2.orig/rsb_common.h +++ librsb-1.3.0.2/rsb_common.h @@ -29,9 +29,6 @@ If not, see