From 740e3ee947d7a3a9ad4eb05302b3df70b7c19c9e Mon Sep 17 00:00:00 2001 From: Stefan Ginsberg Date: Thu, 6 Aug 2009 11:59:20 +0000 Subject: [PATCH] - MSVC fix: static __inline__ -> FORCEINLINE svn path=/trunk/; revision=42425 --- reactos/lib/sdk/crt/time/asctime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/sdk/crt/time/asctime.c b/reactos/lib/sdk/crt/time/asctime.c index 60c62f28c57..f738c238fe2 100644 --- a/reactos/lib/sdk/crt/time/asctime.c +++ b/reactos/lib/sdk/crt/time/asctime.c @@ -57,8 +57,8 @@ typedef union } timebuf_t; #pragma pack(pop) +FORCEINLINE _TCHAR2 -static __inline__ IntToChar2(int x) { union @@ -73,8 +73,8 @@ IntToChar2(int x) return u.char2; } +FORCEINLINE void -static __inline__ FillBuf(timebuf_t *buf, const struct tm *ptm) { /* Format looks like this: -- 2.17.1