1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-01 12:19:28 +00:00

Add the standard #ifdef header protection.

This commit is contained in:
Warner Losh 2013-05-01 05:48:32 +00:00
parent ef5223fdca
commit ba85e9beec
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=250135

View File

@ -33,6 +33,9 @@
* $FreeBSD$
*/
#ifndef _MIPS_INCLUDE_REGDEF_H_
#define _MIPS_INCLUDE_REGDEF_H_
#define zero $0 /* always zero */
#define AT $at /* assembler temp */
#define v0 $2 /* return value */
@ -65,3 +68,5 @@
#define sp $29 /* stack pointer */
#define s8 $30 /* one more callee saved */
#define ra $31 /* return address */
#endif /* _MIPS_INCLUDE_REGDEF_H_ */