mirror of
https://github.com/frida/tinycc
synced 2024-12-22 21:16:49 +03:00
8 lines
88 B
C
8 lines
88 B
C
|
extern void vide(void);
|
||
|
__asm__("vide: ret");
|
||
|
|
||
|
int main() {
|
||
|
vide();
|
||
|
return 0;
|
||
|
}
|