Use regex.[ch] from msysGit's /git
[cvsps/4msysgit.git] / cbtcommon / inline.h
blob187fd22abbe7301ca57313a140f5d42b12b58d1e
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 #elif defined(WIN32)
12 #define INLINE __inline
13 #endif
15 /* INLINE of last resort... heh */
17 #ifndef INLINE
18 #define INLINE /* void */
19 #endif
21 #endif