aboutsummaryrefslogtreecommitdiffstats
path: root/build/sysincl/check
diff options
context:
space:
mode:
authoralexv-smirnov <alex@ydb.tech>2023-03-15 19:59:12 +0300
committeralexv-smirnov <alex@ydb.tech>2023-03-15 19:59:12 +0300
commit056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11 (patch)
tree4740980126f32e3af7937ba0ca5f83e59baa4ab0 /build/sysincl/check
parent269126dcced1cc8b53eb4398b4a33e5142f10290 (diff)
downloadydb-056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11.tar.gz
add library/cpp/actors, ymake build to ydb oss export
Diffstat (limited to 'build/sysincl/check')
-rw-r--r--build/sysincl/check/cxx.c20
-rw-r--r--build/sysincl/check/ya.make11
2 files changed, 31 insertions, 0 deletions
diff --git a/build/sysincl/check/cxx.c b/build/sysincl/check/cxx.c
new file mode 100644
index 0000000000..2945560f8e
--- /dev/null
+++ b/build/sysincl/check/cxx.c
@@ -0,0 +1,20 @@
+#include <complex.h>
+#include <ctype.h>
+#include <errno.h>
+#include <fenv.h>
+#include <float.h>
+#include <inttypes.h>
+#include <limits.h>
+#include <locale.h>
+#include <math.h>
+#include <setjmp.h>
+#include <stdatomic.h>
+#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <tgmath.h>
+#include <wchar.h>
+#include <wctype.h>
diff --git a/build/sysincl/check/ya.make b/build/sysincl/check/ya.make
new file mode 100644
index 0000000000..af09f4695d
--- /dev/null
+++ b/build/sysincl/check/ya.make
@@ -0,0 +1,11 @@
+OWNER(g:ymake)
+
+LIBRARY()
+
+# This library if configured independently will show issues with C++ resolving in pure C modules
+
+NO_RUNTIME()
+
+SRCS(cxx.c)
+
+END() \ No newline at end of file