xref: /openbsd/regress/libexec/ld.so/dlopen/libac/ac.h (revision 09467b48)
1 /*
2  * Public Domain 2003 Dale Rahn
3  *
4  * $OpenBSD: ac.h,v 1.2 2011/04/03 22:29:50 drahn Exp $
5  */
6 
7 class AC {
8 public:
9         AC(const char *);
10         ~AC();
11 private:
12 	const char *_name;
13 };
14 
15