Remove obsolete INLINE preprocessor definition

The INLINE keyword is not used anymore in favor of inline.

Windows only supports __inline so an inline preprocessor definition is
still needed.
This commit is contained in:
cypherpunks
2015-12-10 16:26:04 +01:00
committed by Nick Mathewson
parent 824a6a2a90
commit e91ccbb4f6
+1 -3
View File
@@ -75,9 +75,7 @@
/* inline is __inline on windows. */
#ifdef _WIN32
#define INLINE __inline
#else
#define INLINE inline
#define inline __inline
#endif
/* Try to get a reasonable __func__ substitute in place. */