summaryrefslogtreecommitdiffstats
path: root/kpat/freecell-solver/inline.h
blob: 81f4f8e178caf78abf4000967acab0da62a3473b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * 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