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 int
_asn1_copy_top ( _asn1_copy_top (
const struct asn1_template */*t*/, const struct asn1_template * /*t*/,
const void */*from*/, const void * /*from*/,
void */*to*/); void * /*to*/);
void void
_asn1_free_top(const struct asn1_template *t, _asn1_free_top(const struct asn1_template *t,
@@ -165,43 +165,43 @@ _asn1_free_top(const struct asn1_template *t,
int int
_asn1_decode_top ( _asn1_decode_top (
const struct asn1_template */*t*/, const struct asn1_template * /*t*/,
unsigned /*flags*/, unsigned /*flags*/,
const unsigned char */*p*/, const unsigned char * /*p*/,
size_t /*len*/, size_t /*len*/,
void */*data*/, void * /*data*/,
size_t */*size*/); size_t * /*size*/);
int int
_asn1_encode ( _asn1_encode (
const struct asn1_template */*t*/, const struct asn1_template * /*t*/,
unsigned char */*p*/, unsigned char * /*p*/,
size_t /*len*/, size_t /*len*/,
const void */*data*/, const void * /*data*/,
size_t */*size*/); size_t * /*size*/);
int int
_asn1_encode_fuzzer ( _asn1_encode_fuzzer (
const struct asn1_template */*t*/, const struct asn1_template * /*t*/,
unsigned char */*p*/, unsigned char * /*p*/,
size_t /*len*/, size_t /*len*/,
const void */*data*/, const void * /*data*/,
size_t */*size*/); size_t * /*size*/);
void void
_asn1_free ( _asn1_free (
const struct asn1_template */*t*/, const struct asn1_template * /*t*/,
void */*data*/); void * /*data*/);
size_t size_t
_asn1_length ( _asn1_length (
const struct asn1_template */*t*/, const struct asn1_template * /*t*/,
const void */*data*/); const void * /*data*/);
size_t size_t
_asn1_length_fuzzer ( _asn1_length_fuzzer (
const struct asn1_template */*t*/, const struct asn1_template * /*t*/,
const void */*data*/); const void * /*data*/);
#endif #endif