File: arm_exidx_test.cpp

package info (click to toggle)
python-pyelftools 0.29-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 64,480 kB
  • sloc: python: 14,475; ansic: 184; asm: 86; makefile: 22; cpp: 18
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;
}