We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31039e3 commit e9c0fe4Copy full SHA for e9c0fe4
cpp/common/test/includes/standard-library/cstdlib
@@ -1 +1,19 @@
1
-#include "cstdlib.h"
+#ifndef _GHLIBCPP_CSTDLIB
2
+#define _GHLIBCPP_CSTDLIB
3
+#include "stdlib.h"
4
+namespace std {
5
+using ::_Exit;
6
+using ::abort;
7
+using ::at_quick_exit;
8
+using ::atexit;
9
+using ::atof;
10
+using ::atoi;
11
+using ::atol;
12
+using ::atoll;
13
+using ::exit;
14
+using ::free;
15
+using ::malloc;
16
+using ::quick_exit;
17
+using ::rand;
18
+} // namespace std
19
+#endif // _GHLIBCPP_CSTDLIB
cpp/common/test/includes/standard-library/cstdlib.h
0 commit comments