Rename the include guard

The include guard caused a warning with newer versions of Clang.
This commit is contained in:
Jonathan Schleifer 2017-01-22 16:48:23 +01:00
parent 3be483a237
commit f2b431f80a
No known key found for this signature in database
GPG key ID: 28D65178B37F33E3

View file

@ -25,8 +25,8 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __TRYCATCH_H__
#define __TRYCATCH_H__
#ifndef TRYCATCH_H_INCLUDED
#define TRYCATCH_H_INCLUDED
#include <setjmp.h>
#include <stdnoreturn.h>