repo.or.cz
/
cvsps-yd
/
commitid.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
FreeBSD isn't evil - just misguided
[cvsps-yd/commitid.git]
/
cbtcommon
/
inline.h
blob
776ef267e75d9d0e2607ec47df5f115023e15a5b
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
#endif
12
13
#ifdef WIN32
14
#define INLINE __inline
15
#endif
16
17
/* INLINE of last resort... heh */
18
19
#ifndef INLINE
20
#define INLINE
/* void */
21
#endif
22
23
#endif