This website requires JavaScript.
Explore
Help
Sign in
bjoernager
/
rust
Watch
1
Fork
You've already forked rust
0
Code
Activity
b60f7b51a2
rust
/
tests
/
run-make
/
extern-fn-mangle
/
test.c
9 lines
103 B
C
Raw
Normal View
History
Unescape
Escape
Add new tests for extern and foreign fns and name mangling.
2014-08-01 22:22:02 -06:00
#
include
<stdint.h>
uint32_t
foo
(
)
;
uint32_t
bar
(
)
;
uint32_t
add
(
)
{
Clean up tidy scripts, coverage, performance This restructures tidy.py to walk the tree itself, and improves performance considerably by not loading entire files into buffers for licenseck. Splits build rules into 'tidy', 'tidy-basic', 'tidy-binaries', 'tidy-errors', 'tidy-features'.
2015-01-24 15:18:19 -08:00
return
foo
(
)
+
bar
(
)
;
Add new tests for extern and foreign fns and name mangling.
2014-08-01 22:22:02 -06:00
}
Copy permalink