summaryrefslogtreecommitdiff
path: root/src/libFLAC/format.c
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2009-01-03 02:10:18 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2009-01-03 02:10:18 +0000
commit8e28e43b2584bd22681072bbbbd15bc0ca676717 (patch)
treefc8f98bd115b89b6bd06fafca728d705811af3db /src/libFLAC/format.c
parent494d9ab0113fe04669759d2908682cbdb57e3679 (diff)
downloadflac-8e28e43b2584bd22681072bbbbd15bc0ca676717.tar.gz
remove some inlining directives
Diffstat (limited to 'src/libFLAC/format.c')
-rw-r--r--src/libFLAC/format.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libFLAC/format.c b/src/libFLAC/format.c
index b795ac5c..f4a913ae 100644
--- a/src/libFLAC/format.c
+++ b/src/libFLAC/format.c
@@ -40,10 +40,6 @@
#include "FLAC/format.h"
#include "private/format.h"
-#ifndef FLaC__INLINE
-#define FLaC__INLINE
-#endif
-
#ifdef min
#undef min
#endif
@@ -323,7 +319,7 @@ FLAC_API unsigned FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *se
* and a more clear explanation at the end of this section:
* http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
*/
-static FLaC__INLINE unsigned utf8len_(const FLAC__byte *utf8)
+static unsigned utf8len_(const FLAC__byte *utf8)
{
FLAC__ASSERT(0 != utf8);
if ((utf8[0] & 0x80) == 0) {