https://github.com/torvalds/linux
Raw File
Tip revision: b6fd41e29dea9c6753b1843a77e50433e6123bcb authored by Linus Torvalds on 12 September 2011, 21:02:02 UTC
Linux 3.1-rc6
Tip revision: b6fd41e
types.h
#ifndef _SPARC_TYPES_H
#define _SPARC_TYPES_H
/*
 * This file is never included by application software unless
 * explicitly requested (e.g., via linux/types.h) in which case the
 * application is Linux specific so (user-) name space pollution is
 * not a major issue.  However, for interoperability, libraries still
 * need to be careful to avoid a name clashes.
 */

#if defined(__sparc__)

#include <asm-generic/int-ll64.h>

#ifndef __ASSEMBLY__

typedef unsigned short umode_t;

#endif /* __ASSEMBLY__ */

#endif /* defined(__sparc__) */

#endif /* defined(_SPARC_TYPES_H) */
back to top