mirror of
https://github.com/wader/fq.git
synced 2024-11-28 11:42:50 +03:00
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();
|
|
}
|