brintos

brintos / llvm-project-archived public Read only

0
0
Text · 133 B · 436c302 Raw
8 lines · cpp
1#include "library_file.h"2#include <stdio.h>3 4int library_function(void) {5  puts(__FUNCTION__); // Library break here6  return 0;7}8