File: arm_exidx_test.cpp

package info (click to toggle)
python-pyelftools 0.32-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 68,964 kB
  • sloc: python: 15,903; ansic: 298; asm: 86; makefile: 24; cpp: 18; sh: 4
file content (23 lines) | stat: -rw-r--r-- 340 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <string>
#include <iostream>

void func1(int i);

void func2(int i);

void func1(int i) {
    if (i == 0)
        return;
    func2(i - 1);
}

void func2(int i) {
    if (i == 0)
        return;
    func1(i - 1);
}

int main(int argc, char **argv) {
    std::string hello = "Hello from C++";
    std::cout << hello << std::endl;
}