1
1
mirror of https://github.com/wader/fq.git synced 2024-12-25 22:34:14 +03:00
fq/format/elf/testdata/a.c
Mattias Wadman 681dbc26b7 elf,ar: Add ar decoder, improved elf decoder
Add x86, 386, arm64, arm v6, arm v7 linux elf test files
2022-01-05 22:05:09 +01:00

14 lines
121 B
C

#include <stdio.h>
#include "libbbb.h"
void aaa()
{
printf("aaa\n");
}
int main()
{
aaa();
libbbb_bbb();
}