From: tfheen Date: Tue, 17 Feb 2009 09:48:10 +0000 (+0000) Subject: Remove __BEGIN_DECLS and __END_DECLS as those do not exist on Solaris (and we do... X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=20dceaa4e185cce8a88cf6dacf30d0a65e7fd6f9;p=varnish Remove __BEGIN_DECLS and __END_DECLS as those do not exist on Solaris (and we do not need them) git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3777 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/include/vsha256.h b/varnish-cache/include/vsha256.h index feaddb83..7faef930 100644 --- a/varnish-cache/include/vsha256.h +++ b/varnish-cache/include/vsha256.h @@ -37,11 +37,9 @@ typedef struct SHA256Context { unsigned char buf[64]; } SHA256_CTX; -__BEGIN_DECLS void SHA256_Init(SHA256_CTX *); void SHA256_Update(SHA256_CTX *, const void *, size_t); void SHA256_Final(unsigned char [32], SHA256_CTX *); void SHA256_Test(void); -__END_DECLS #endif /* !_SHA256_H_ */