This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
4d55affc12
rust
/
tests
/
run-make-fulldeps
/
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 23:22:02 -05: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 17:18:19 -06:00
return
foo
(
)
+
bar
(
)
;
Add new tests for extern and foreign fns and name mangling.
2014-08-01 23:22:02 -05:00
}
Reference in New Issue
Copy Permalink