mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 15:39:00 +00:00
7 lines
95 B
C
7 lines
95 B
C
|
#include <stdio.h>
|
||
|
int tcount;
|
||
|
void foo() {
|
||
|
char Buf[10];
|
||
|
sprintf(Buf, "n%%%d", tcount++);
|
||
|
}
|