Add test about issue with no commit on a branch
[cvsps-hv.git] / cbtcommon / inline.h
blob776ef267e75d9d0e2607ec47df5f115023e15a5b
1 /*
2 * Copyright 2001, 2002, 2003 David Mansfield and Cobite, Inc.
3 * See COPYING file for license information
4 */
6 #ifndef UTIL_INLINE_H
7 #define UTIL_INLINE_H
9 #ifdef __GNUC__
10 #define INLINE __inline__
11 #endif
13 #ifdef WIN32
14 #define INLINE __inline
15 #endif
17 /* INLINE of last resort... heh */
19 #ifndef INLINE
20 #define INLINE /* void */
21 #endif
23 #endif