summaryrefslogtreecommitdiff
path: root/tests/bionic/libc/bionic/lib_static_init.h
blob: f455de8e765c55ed0769f57fca0c0d61c1e2e5d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _lib_static_init_h
#define _lib_static_init_h

class Foo {
private:
    int         value;
    static int  counter;
public:
    virtual int getValue();
    Foo();
};

extern Foo  theFoo;

#endif /* _lib_static_init_h */