You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
333 B
21 lines
333 B
/*
|
|
* inline.h - the purpose of this file is to define the GCC_INLINE
|
|
* macro.
|
|
*
|
|
* Written by Shlomi Fish, 2002
|
|
*
|
|
* This file is in the public domain (it's uncopyrighted).
|
|
* */
|
|
|
|
#ifndef FC_SOLVE__INLINE_H
|
|
#define FC_SOLVE__INLINE_H
|
|
|
|
#if defined(__GNUC__)
|
|
#define GCC_INLINE __inline__
|
|
#else
|
|
#define GCC_INLINE
|
|
#endif
|
|
|
|
|
|
#endif
|