xref: /kvm-unit-tests/lib/auxinfo.h (revision 0cc3a351b925928827baa4b69cf0e46ff5837083)
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 
8 #define AUXINFO_MMU_OFF (1 << 0)
9 
10 #ifndef __ASSEMBLER__
11 struct auxinfo {
12 	const char *progname;
13 	unsigned long flags;
14 };
15 
16 extern struct auxinfo auxinfo;
17 #endif
18 #endif
19