mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-15 09:00:24 -04:00
10 lines
101 B
C
10 lines
101 B
C
struct S {
|
|
void m(int x);
|
|
|
|
S();
|
|
S(const S&);
|
|
|
|
operator const char*();
|
|
operator char*();
|
|
};
|