diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
commit | bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch) | |
tree | 1d1df72c0541a59a81439842f46d95396d3e7189 /build/sysincl/check | |
parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
download | ydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz |
add ymake export to ydb
Diffstat (limited to 'build/sysincl/check')
-rw-r--r-- | build/sysincl/check/cxx.c | 20 | ||||
-rw-r--r-- | build/sysincl/check/ya.make | 11 |
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 |