blob: 08b96f8ece4c714aacfef23fbb1e6b22a868a2c8 [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;
};
/* No extern! Define a common symbol. */
struct auxinfo auxinfo;
#endif
#endif