summaryrefslogtreecommitdiff
path: root/cbtcommon/inline.h
blob: 776ef267e75d9d0e2607ec47df5f115023e15a5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright 2001, 2002, 2003 David Mansfield and Cobite, Inc.
 * See COPYING file for license information 
 */

#ifndef UTIL_INLINE_H
#define UTIL_INLINE_H

#ifdef __GNUC__
#define INLINE __inline__
#endif

#ifdef WIN32
#define INLINE __inline
#endif

/* INLINE of last resort... heh */

#ifndef INLINE
#define INLINE /* void */
#endif

#endif