mirror of https://github.com/FDOS/kernel.git
Use static for GCC, which makes the kernel smaller (automatic inlining)
This commit is contained in:
parent
d7a05ab6cd
commit
ce8e4fd091
|
@ -289,7 +289,7 @@ typedef unsigned short CLUSTER;
|
|||
#endif
|
||||
typedef unsigned short UNICODE;
|
||||
|
||||
#if defined(STATICS) || defined(__WATCOMC__)
|
||||
#if defined(STATICS) || defined(__WATCOMC__) || defined(__GNUC__)
|
||||
#define STATIC static /* local calls inside module */
|
||||
#else
|
||||
#define STATIC
|
||||
|
|
Loading…
Reference in New Issue