blob: 877f13d830b0cbaa640bb948af76767b0827c1d3 [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 __ASSEMBLER__
struct auxinfo {
const char *progname;
unsigned long flags;
};
extern struct auxinfo auxinfo;
#endif
#endif