summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAiden Gall <aiden@aidengall.xyz>2025-10-14 19:24:44 +0100
committerAiden Gall <aiden@aidengall.xyz>2025-10-14 19:24:44 +0100
commitf9660f90394bae4e63d20005c592fd96ef967d0d (patch)
treeea84912fa92c961de3517475f6789880c2aba671
parent7fde27c6a2bf4adeb6e26495fc22115f7714de5d (diff)
use __noinline__ to avoid possible name collision
-rw-r--r--tco.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tco.h b/tco.h
index 897f2fa..4dd8bd2 100644
--- a/tco.h
+++ b/tco.h
@@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#if defined(__GNUC__) || defined(__clang__)
-#define coroutine __attribute__((noinline))
+#define coroutine __attribute__((__noinline__))
#else
#define coroutine
#endif