mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
10 lines
108 B
C++
10 lines
108 B
C++
|
struct duration {
|
||
|
duration operator/=(int c) {
|
||
|
return *this;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
void a000090() {
|
||
|
duration() /= 1;
|
||
|
}
|