mirror of
https://github.com/Noratrieb/rlo-issue-112061.git
synced 2026-01-14 08:25:03 +01:00
12 lines
No EOL
138 B
C
12 lines
No EOL
138 B
C
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
void print_var(uint8_t x) {
|
|
printf("%d", x);
|
|
}
|
|
|
|
void fn12_rs();
|
|
|
|
int main() {
|
|
fn12_rs();
|
|
} |