1 #include "config_ast.h"  // IWYU pragma: keep
2 
3 #include <stdio.h>
4 
5 // Version of the libast API that plugin is linked to.
plugin_version(void)6 unsigned long plugin_version(void) { return 20131127; }
7 
b_sample(int argc,char * argv[])8 int b_sample(int argc, char *argv[]) {
9     UNUSED(argc);
10     UNUSED(argv);
11 
12     printf("This is a sample builtin");
13     fflush(stdout);
14     return 0;
15 }
16