blob: a46a1e6f6a629db88dba39ab44d056113fc073d8 [file] [log] [blame]
/*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License version 2.
*/
#ifndef _AUXINFO_H_
#define _AUXINFO_H_
#define AUXINFO_MMU_OFF (1 << 0)
#ifndef __ASSEMBLY__
struct auxinfo {
const char *progname;
unsigned long flags;
};
extern struct auxinfo auxinfo;
#endif
#endif