xref: /kvm-unit-tests/lib/auxinfo.h (revision 7516869fc7fbc175d18adb165117ba502050b160)
1 /*
2  * This code is free software; you can redistribute it and/or modify it
3  * under the terms of the GNU Library General Public License version 2.
4  */
5 #ifndef _AUXINFO_H_
6 #define _AUXINFO_H_
7 struct auxinfo {
8 	const char *progname;
9 };
10 
11 /* No extern!  Define a common symbol.  */
12 struct auxinfo auxinfo;
13 #endif
14