mirror of
https://github.com/wader/fq.git
synced 2024-12-12 13:14:16 +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();
|
||
|
}
|