1#include <stdio.h>
2
3extern int a(int);
4extern int b(int);
5int main (int argc, char const *argv[])
6{
7 printf (format: "a(1) returns %d\n", a(1));
8 printf (format: "b(2) returns %d\n", b(2));
9}
10

Provided by KDAB

Privacy Policy
Update your C++ knowledge – Modern C++11/14/17 Training
Find out more

source code of lldb/test/API/functionalities/archives/main.c