station_cmd.c
changeset 536 aef4753985d3
parent 534 17ab2f22ff74
child 543 e3b43338096b
--- a/station_cmd.c	Fri Dec 03 05:59:26 2004 +0000
+++ b/station_cmd.c	Fri Dec 03 07:43:00 2004 +0000
@@ -682,7 +682,7 @@
 	return true;
 }
 
-static byte FORCEINLINE *CreateSingle(byte *layout, int n)
+static inline byte *CreateSingle(byte *layout, int n)
 {
 	int i = n;
 	do *layout++ = 0; while (--i);
@@ -690,7 +690,7 @@
 	return layout;
 }
 
-static byte FORCEINLINE *CreateMulti(byte *layout, int n, byte b)
+static inline byte *CreateMulti(byte *layout, int n, byte b)
 {
 	int i = n;
 	do *layout++ = b; while (--i);