mirror of
https://github.com/frida/tinycc
synced 2024-12-19 20:02:47 +03:00
8 lines
71 B
C
8 lines
71 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int x3(void)
|
||
|
{
|
||
|
printf("x3\n");
|
||
|
return 3;
|
||
|
}
|