File: inline.h

package info (click to toggle)
freecell-solver 2.8.10-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, sarge
  • size: 2,864 kB
  • ctags: 1,215
  • sloc: ansic: 14,713; sh: 10,555; perl: 451; python: 349; makefile: 99
file content (20 lines) | stat: -rw-r--r-- 338 bytes parent folder | download
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 __INLINE_H
#define __INLINE_H

#if defined(__GNUC__) || defined(HAVE_C_INLINE)
#define GCC_INLINE inline
#else
#define GCC_INLINE
#endif


#endif