diff options
-rw-r--r-- | src/lib/krb5/asn.1/asn1buf.c | 2 | ||||
-rw-r--r-- | src/lib/krb5/asn.1/asn1buf.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/krb5/asn.1/asn1buf.c b/src/lib/krb5/asn.1/asn1buf.c index 29a3f5c55..b8efabaca 100644 --- a/src/lib/krb5/asn.1/asn1buf.c +++ b/src/lib/krb5/asn.1/asn1buf.c @@ -55,7 +55,7 @@ #include <stdio.h> #include "asn1_get.h" -#if !((__GNUC__ >= 2) && !defined(ASN1BUF_OMIT_INLINE_FUNCS)) || defined(CONFIG_SMALL) +#if !defined(__GNUC__) || defined(CONFIG_SMALL) /* Declare private procedures as static if they're not used for inline expansion of other stuff elsewhere. */ static unsigned int asn1buf_free(const asn1buf *); diff --git a/src/lib/krb5/asn.1/asn1buf.h b/src/lib/krb5/asn.1/asn1buf.h index 1e40cae7b..874d6db5c 100644 --- a/src/lib/krb5/asn.1/asn1buf.h +++ b/src/lib/krb5/asn.1/asn1buf.h @@ -13,7 +13,7 @@ typedef struct code_buffer_rep { /**************** Private Procedures ****************/ -#if ((__GNUC__ >= 2) && !defined(ASN1BUF_OMIT_INLINE_FUNCS)) && !defined(CONFIG_SMALL) +#if (__GNUC__ >= 2) && !defined(CONFIG_SMALL) unsigned int asn1buf_free (const asn1buf *buf); /* requires *buf is allocated |