mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-12-03 02:52:58 +00:00
8 lines
103 B
C++
8 lines
103 B
C++
|
#include <stdio.h>
|
||
|
#include "hello.h"
|
||
|
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
hello_func();
|
||
|
return 0;
|
||
|
}
|