mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 08:18:10 +00:00
6 lines
83 B
C
6 lines
83 B
C
#include <stdint.h>
|
|
|
|
uint32_t my_add(uint32_t a, uint32_t b) {
|
|
return a + b;
|
|
}
|