shithub: rgbds

ref: cbaaec98ca14ecb6bc8521b9fb7a9c319cb20f4e
dir: /include/helpers.h/

View raw version
/*
 * This file is part of RGBDS.
 *
 * Copyright (c) 2014-2018, RGBDS contributors.
 *
 * SPDX-License-Identifier: MIT
 */

#ifndef HELPERS_H
#define HELPERS_H

#ifdef __GNUC__
	/* GCC or compatible */
	#define noreturn __attribute__ ((noreturn))
#else
	/* Unsupported, but no need to throw a fit */
	#define noreturn
#endif

#endif /* HELPERS_H */