Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
tokatoka committed Jan 4, 2024
1 parent 2d16373 commit 4898f5b
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions runtime/rust_backend/RustRuntime.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,14 @@
#ifndef RUSTRUNTIME_H
#define RUSTRUNTIME_H

#include <stdbool.h>
#include <stddef.h>

#ifdef __cplusplus
#include <cstdint>
extern "C" {
#else
#include <stdint.h>
#endif

typedef uintptr_t RSymExpr;

Expand Down Expand Up @@ -140,4 +145,8 @@ void _rsym_notify_basic_block(uintptr_t site_id);
*/
void _rsym_expression_unreachable(RSymExpr *expressions, size_t num_elements);

#endif
#ifdef __cplusplus
}
#endif

#endif

0 comments on commit 4898f5b

Please sign in to comment.