mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-12-04 08:02:31 +00:00
9 lines
188 B
C
9 lines
188 B
C
|
#include <stdio.h>
|
||
|
#include "builtWithBazel.h"
|
||
|
#include "simple.h"
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
printf("Call bazelSays() directly: %s\n", bazelSays());
|
||
|
simpleFun();
|
||
|
return 0;
|
||
|
}
|