Minor documentation update.

This commit is contained in:
Simon Ruderich
2013-06-15 02:21:27 +02:00
parent 0a909cac79
commit 1068648718
3 changed files with 4 additions and 3 deletions

View File

@@ -20,10 +20,11 @@
#ifndef COMPILER_H
#define COMPILER_H 1
/* Prevent/force inlining. Used to improve performance. */
#ifdef HAVE___ATTRIBUTE__
/* Prevent/force inlining. Used to improve performance. */
# define noinline __attribute__((noinline))
# define always_inline __attribute__((always_inline))
/* Unused parameter. */
# define unused __attribute__((unused))
#else
# define noinline