| 1 | #include "library_file.h" |
|---|---|
| 2 | #include <stdio.h> |
| 3 | |
| 4 | int library_function(void) { |
| 5 | puts(s: __FUNCTION__); // Library break here |
| 6 | return 0; |
| 7 | } |
| 8 |
| 1 | #include "library_file.h" |
|---|---|
| 2 | #include <stdio.h> |
| 3 | |
| 4 | int library_function(void) { |
| 5 | puts(s: __FUNCTION__); // Library break here |
| 6 | return 0; |
| 7 | } |
| 8 |