avoid "*/" outside of comment warning on Windows

Separate the "*" meant to indicate a pointer from "/*" which begins
and end of line comment.

Change-Id: Ib671aace4f493b58ea9d43c11642c7c1896f773f
This commit is contained in:
Jeffrey Altman
2013-06-22 16:45:28 -04:00
parent eccbdac238
commit a97c9c9be4

View File

@@ -155,9 +155,9 @@ extern struct asn1_type_func asn1_template_prim[A1T_NUM_ENTRY];
int
_asn1_copy_top (
const struct asn1_template */*t*/,
const void */*from*/,
void */*to*/);
const struct asn1_template * /*t*/,
const void * /*from*/,
void * /*to*/);
void
_asn1_free_top(const struct asn1_template *t,
@@ -165,43 +165,43 @@ _asn1_free_top(const struct asn1_template *t,
int
_asn1_decode_top (
const struct asn1_template */*t*/,
const struct asn1_template * /*t*/,
unsigned /*flags*/,
const unsigned char */*p*/,
const unsigned char * /*p*/,
size_t /*len*/,
void */*data*/,
size_t */*size*/);
void * /*data*/,
size_t * /*size*/);
int
_asn1_encode (
const struct asn1_template */*t*/,
unsigned char */*p*/,
const struct asn1_template * /*t*/,
unsigned char * /*p*/,
size_t /*len*/,
const void */*data*/,
size_t */*size*/);
const void * /*data*/,
size_t * /*size*/);
int
_asn1_encode_fuzzer (
const struct asn1_template */*t*/,
unsigned char */*p*/,
const struct asn1_template * /*t*/,
unsigned char * /*p*/,
size_t /*len*/,
const void */*data*/,
size_t */*size*/);
const void * /*data*/,
size_t * /*size*/);
void
_asn1_free (
const struct asn1_template */*t*/,
void */*data*/);
const struct asn1_template * /*t*/,
void * /*data*/);
size_t
_asn1_length (
const struct asn1_template */*t*/,
const void */*data*/);
const struct asn1_template * /*t*/,
const void * /*data*/);
size_t
_asn1_length_fuzzer (
const struct asn1_template */*t*/,
const void */*data*/);
const struct asn1_template * /*t*/,
const void * /*data*/);
#endif