mirror of
https://github.com/wader/fq.git
synced 2024-12-25 22:34:14 +03:00
681dbc26b7
Add x86, 386, arm64, arm v6, arm v7 linux elf test files
14 lines
121 B
C
14 lines
121 B
C
#include <stdio.h>
|
|
#include "libbbb.h"
|
|
|
|
void aaa()
|
|
{
|
|
printf("aaa\n");
|
|
}
|
|
|
|
int main()
|
|
{
|
|
aaa();
|
|
libbbb_bbb();
|
|
}
|