mirror of
https://github.com/Interlisp/maiko.git
synced 2026-04-30 05:45:43 +00:00
Favor C99 inline over __inline__. (#337)
This commit is contained in:
2
inc/my.h
2
inc/my.h
@@ -69,7 +69,7 @@
|
|||||||
} \
|
} \
|
||||||
}
|
}
|
||||||
|
|
||||||
__inline__ static LispPTR
|
static inline LispPTR
|
||||||
aref_switch(int type, LispPTR tos, LispPTR baseL, int index)
|
aref_switch(int type, LispPTR tos, LispPTR baseL, int index)
|
||||||
{
|
{
|
||||||
LispPTR result;
|
LispPTR result;
|
||||||
|
|||||||
@@ -50,9 +50,7 @@
|
|||||||
/* */
|
/* */
|
||||||
/************************************************************************/
|
/************************************************************************/
|
||||||
/* I consider that there is no case the variable named \GCDISABLED is set to T */
|
/* I consider that there is no case the variable named \GCDISABLED is set to T */
|
||||||
/* #define Make_MDSentry(page,pattern) GETWORD((DLword *)MDStypetbl+(page>>1)) = (DLword)pattern */
|
static inline void Make_MDSentry(UNSIGNED page, DLword pattern) {
|
||||||
|
|
||||||
static void __inline__ Make_MDSentry(UNSIGNED page, DLword pattern) {
|
|
||||||
GETWORD((DLword *)MDStypetbl + (page >> 1)) = (DLword)pattern;
|
GETWORD((DLword *)MDStypetbl + (page >> 1)) = (DLword)pattern;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user