repo.or.cz
/
cvsps
/
4msysgit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use regex.[ch] from msysGit's /git
[cvsps/4msysgit.git]
/
cbtcommon
/
inline.h
blob
187fd22abbe7301ca57313a140f5d42b12b58d1e
1
/*
2
* Copyright 2001, 2002, 2003 David Mansfield and Cobite, Inc.
3
* See COPYING file for license information
4
*/
5
6
#ifndef UTIL_INLINE_H
7
#define UTIL_INLINE_H
8
9
#ifdef __GNUC__
10
#define INLINE __inline__
11
#elif defined(WIN32)
12
#define INLINE __inline
13
#endif
14
15
/* INLINE of last resort... heh */
16
17
#ifndef INLINE
18
#define INLINE
/* void */
19
#endif
20
21
#endif