File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ use harp::utils::r_str_to_owned_utf8_unchecked;
8
8
use crate :: interface:: RMain ;
9
9
use crate :: interface:: CAPTURE_CONSOLE_OUTPUT ;
10
10
11
- // Ensure the compiler includes the C entry points in `debug.c` in the binary.
12
- // We store function pointers in global variables that are declared "used". The
13
- // compiler is able to follow the chain of dependency from these variables to
14
- // the C functions and ultimately their Rust implementations defined below.
15
-
11
+ // To ensure the compiler includes the C entry points in `debug.c` in the binary,
12
+ // we store function pointers in global variables that are declared "used" (even
13
+ // though we never actually use them). The compiler is able to follow the chain
14
+ // of dependency from these variables to the C functions and ultimately their
15
+ // Rust implementations defined below.
16
16
extern "C" {
17
17
fn ark_print ( x : libr:: SEXP ) -> * const ffi:: c_char ;
18
18
fn ark_inspect ( x : libr:: SEXP ) -> * const ffi:: c_char ;
You can’t perform that action at this time.
0 commit comments