We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b0a11d commit 5f21e67Copy full SHA for 5f21e67
ocaml/runtime4/caml/camlatomic.h
@@ -42,8 +42,10 @@ using std::memory_order_seq_cst;
42
43
#include <stdatomic.h>
44
#define ATOMIC_UINTNAT_INIT(x) (x)
45
-typedef _Atomic uintnat atomic_uintnat;
46
-typedef _Atomic intnat atomic_intnat;
+
+// CR ocaml 5 runtime: provide these typedefs (requires C11)
47
+// typedef _Atomic uintnat atomic_uintnat;
48
+// typedef _Atomic intnat atomic_intnat;
49
50
#elif defined(__GNUC__)
51
0 commit comments