This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-06-18 18:47:29 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
c5819b2b9b
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-02 04:22:02 +00: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 23:18:19 +00:00
return
foo
(
)
+
bar
(
)
;
Add new tests for extern and foreign fns and name mangling.
2014-08-02 04:22:02 +00:00
}
Reference in New Issue
Copy Permalink