From 6db79fd18be04e25887d181cd51819461e4cf174 Mon Sep 17 00:00:00 2001 From: Damir Franusic Date: Sun, 31 Mar 2019 19:24:11 +0200 Subject: [PATCH] Fix compiler redefinition warnings * check if __EXTENSIONS__ if alreay defined --- skeletons/asn_internal.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skeletons/asn_internal.h b/skeletons/asn_internal.h index 273608314..4e72d62f3 100644 --- a/skeletons/asn_internal.h +++ b/skeletons/asn_internal.h @@ -7,8 +7,9 @@ */ #ifndef ASN_INTERNAL_H #define ASN_INTERNAL_H +#ifndef __EXTENSIONS__ #define __EXTENSIONS__ /* for Sun */ - +#endif #include "asn_application.h" /* Application-visible API */ #ifndef __NO_ASSERT_H__ /* Include assert.h only for internal use. */